Get available models
Deprecated: Use GET /v2/ai/openai/models instead.
Returns the same ModelsResponse payload as the OpenAI-compatible endpoint — open-source LLMs hosted on Telnyx (e.g. moonshotai/Kimi-K2.6, zai-org/GLM-5.1-FP8, MiniMaxAI/MiniMax-M2.7), embedding models, and fine-tuned models — kept around for backwards compatibility. New integrations should use /v2/ai/openai/models.
Model ids follow the {organization}/{model_name} convention from Hugging Face.
Response
Successful Response
Example response
{
"data": [
{
"id": "moonshotai/Kimi-K2.6",
"owned_by": "Telnyx",
"organization": "moonshotai",
"task": "text-generation",
"context_length": 262144,
"parameters": 1000000000000,
"parameters_str": "1.0T",
"pricing": {
"prompt": "0.300000",
"completion": "1.200000",
"cached_prompt": "0.060000",
"currency": "USD",
"unit": "1M_tokens"
},
"regions": [
"us-central-1",
"us-east-1"
]
}
]
}Changes
Changed in 2 of the 47 revisions of this API.117
- ▲
the
data/items/createdresponse's property type/format changed frominteger/tostring/date-timefor status200response-property-type-changed
- ○
added the optional property
data/items/base_modelto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/descriptionto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/is_fine_tunableto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/is_vision_supportedto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/max_completion_tokensto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/parameters_strto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/pricingto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/recommended_for_assistantsto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/regionsto the response with the200statusresponse-optional-property-added
- ○
added the optional property
data/items/taskto the response with the200statusresponse-optional-property-added
- ○
added the required property
data/items/context_lengthto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/languagesto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/licenseto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/organizationto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/parametersto the response with the200statusresponse-required-property-added
- ○
added the required property
data/items/tierto the response with the200statusresponse-required-property-added
- ▲
- ○
endpoint deprecated
endpoint-deprecated
This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○