Skip to content

List Models

Inworld's LLM Router exposes models from multiple providers. Use this call to discover which ones are available with their capabilities and pricing.

This example assumes using Inworld; is in scope and apiKey contains your Inworld API key.

1
2
3
4
using var client = new InworldClient(apiKey);

// Fetch all supported LLM models along with their modalities, context length, and pricing.
var response = await client.Models.ListModelsAsync();