v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
OpenAI Chat

Get available models (OpenAI-compatible)

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.

get/ai/openai/models

Response

Successful Response

objectstring

Example response

{
  "data": [
    {
      "context_length": 262144,
      "id": "moonshotai/Kimi-K2.6",
      "organization": "moonshotai",
      "owned_by": "Telnyx",
      "parameters": 1000000000000,
      "parameters_str": "1.0T",
      "pricing": {
        "cached_prompt": "0.060000",
        "completion": "1.200000",
        "currency": "USD",
        "prompt": "0.300000",
        "unit": "1M_tokens"
      },
      "regions": [
        "us-central-1",
        "us-east-1"
      ],
      "task": "text-generation"
    }
  ]
}