cURL
curl --location 'https://api.inworld.ai/llm/v1alpha/models' \
--header "Authorization: Basic $INWORLD_API_KEY"{
"models": [
{
"model": "gemini-2.5-flash",
"provider": "google",
"modelCreator": "Google",
"pricing": {
"prompt": 3e-7,
"completion": 0.0000025
},
"spec": {
"inputModalities": [
"text",
"image",
"audio",
"video"
],
"outputModalities": [
"text"
],
"contextLength": 1048576,
"maxCompletionTokens": 65535,
"supportedParameters": [
"reasoning",
"include_reasoning",
"structured_outputs",
"response_format",
"max_tokens",
"temperature",
"top_p",
"seed",
"stop",
"tools",
"tool_choice"
],
"capabilities": {
"functionCalling": true,
"webSearch": true,
"reasoning": true,
"promptCaching": true,
"responseSchema": true,
"vision": true
}
},
"isSupported": true
}
]
}Models
List models
List all available models along with their capabilities, pricing, and specifications.
GET
/
llm
/
v1alpha
/
models
cURL
curl --location 'https://api.inworld.ai/llm/v1alpha/models' \
--header "Authorization: Basic $INWORLD_API_KEY"{
"models": [
{
"model": "gemini-2.5-flash",
"provider": "google",
"modelCreator": "Google",
"pricing": {
"prompt": 3e-7,
"completion": 0.0000025
},
"spec": {
"inputModalities": [
"text",
"image",
"audio",
"video"
],
"outputModalities": [
"text"
],
"contextLength": 1048576,
"maxCompletionTokens": 65535,
"supportedParameters": [
"reasoning",
"include_reasoning",
"structured_outputs",
"response_format",
"max_tokens",
"temperature",
"top_p",
"seed",
"stop",
"tools",
"tool_choice"
],
"capabilities": {
"functionCalling": true,
"webSearch": true,
"reasoning": true,
"promptCaching": true,
"responseSchema": true,
"vision": true
}
},
"isSupported": true
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.inworld.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Your authentication credentials. For Basic authentication, please populate Basic $INWORLD_API_KEY
Response
A successful response.
The list of available models.
Show child attributes
Show child attributes
Was this page helpful?
⌘I