GET
/
v3
/
openai
/
models
List models
curl --request GET \
  --url https://api.novita.ai/v3/openai/models \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "data": [
    {
      "created": 1733560109,
      "id": "meta-llama/llama-3.3-70b-instruct",
      "object": "model",
      "input_token_price_per_m": 3900,
      "output_token_price_per_m": 3900,
      "title": "meta-llama/llama-3.3-70b-instruct",
      "description": "The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and instruction tuned generative model in 70B (text in/text out). The Llama 3.3 instruction tuned text only model is optimized for multilingual dialogue use cases and outperforms many of the available open source and closed chat models on common industry benchmarks.\n\nSupported languages: English, German, French, Italian, Portuguese, Hindi, Spanish, and Thai.",
      "context_size": 131072
    },
    // more models here...
  ]
}
Lists the currently available models for the LLM API, and provides basic information about each one. This endpoint is compatible with OpenAI API.

Request Headers

Content-Type
string
required
Enum: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Response

{
  "data": [
    {
      "created": 1733560109,
      "id": "meta-llama/llama-3.3-70b-instruct",
      "object": "model",
      "input_token_price_per_m": 3900,
      "output_token_price_per_m": 3900,
      "title": "meta-llama/llama-3.3-70b-instruct",
      "description": "The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and instruction tuned generative model in 70B (text in/text out). The Llama 3.3 instruction tuned text only model is optimized for multilingual dialogue use cases and outperforms many of the available open source and closed chat models on common industry benchmarks.\n\nSupported languages: English, German, French, Italian, Portuguese, Hindi, Spanish, and Thai.",
      "context_size": 131072
    },
    // more models here...
  ]
}
data
array
required
Array of model objects with the following properties: