Check out our upcoming events and meetups! View events →
Lists every model currently available to your account on Telnyx Inference, including SOTA open-source LLMs hosted on Telnyx GPUs (for example moonshotai/Kimi-K2.6, zai-org/GLM-5.1-FP8, and MiniMaxAI/MiniMax-M2.7), embedding models, and any fine-tuned models you have created.
Each entry is a ModelMetadata object describing the model id, owner, task, context length, supported languages, billing tier, pricing per 1M tokens, deployment regions, and whether the model supports vision or fine-tuning. Use this endpoint to discover model ids you can pass to POST /v2/ai/openai/chat/completions.
Model ids follow the {organization}/{model_name} convention from Hugging Face (for example moonshotai/Kimi-K2.6). This endpoint is OpenAI-compatible: clients pointed at https://api.telnyx.com/v2/ai/openai can call client.models.list() to retrieve the same payload.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.ai.openai.listModels();
console.log(response.data);{
"data": [
{
"id": "moonshotai/Kimi-K2.6",
"created": "2023-11-07T05:31:56Z",
"owned_by": "Telnyx",
"organization": "moonshotai",
"context_length": 262144,
"languages": [
"<string>"
],
"parameters": 1000000000000,
"tier": "small",
"license": "<string>",
"object": "model",
"base_model": "<string>",
"task": "text-generation",
"max_completion_tokens": 123,
"parameters_str": "1.0T",
"is_fine_tunable": false,
"recommended_for_assistants": false,
"is_vision_supported": false,
"description": "<string>",
"pricing": {
"input": "0.60",
"output": "2.50"
},
"regions": [
"us-central-1",
"us-east-1"
]
}
],
"object": "list"
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.ai.openai.listModels();
console.log(response.data);{
"data": [
{
"id": "moonshotai/Kimi-K2.6",
"created": "2023-11-07T05:31:56Z",
"owned_by": "Telnyx",
"organization": "moonshotai",
"context_length": 262144,
"languages": [
"<string>"
],
"parameters": 1000000000000,
"tier": "small",
"license": "<string>",
"object": "model",
"base_model": "<string>",
"task": "text-generation",
"max_completion_tokens": 123,
"parameters_str": "1.0T",
"is_fine_tunable": false,
"recommended_for_assistants": false,
"is_vision_supported": false,
"description": "<string>",
"pricing": {
"input": "0.60",
"output": "2.50"
},
"regions": [
"us-central-1",
"us-east-1"
]
}
],
"object": "list"
}