# List models - Documentation

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown is available with `Accept: text/markdown` and `.md` URL variants.

Source: /docs/api-reference/model-apis-llm-list-models

# List models

GET

/

openai

/

v1

/

models

Try it

List models

cURL

```
curl --request GET \
--url https://api.novita.ai/openai/v1/models \
--header 'Authorization: &#x3C;authorization>' \
--header 'Content-Type: &#x3C;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)

Request Headers

[​](#param-content-type)

Content-Type

string

required

Enum: `application/json`

[​](#param-authorization)

Authorization

string

required

Bearer authentication format, for example: Bearer {{API Key}}.

##

[​](#response)

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...
]
}
```

[​](#param-data)

data

array

required

Array of model objects with the following properties:

Show Model Object Properties

[​](#param-id)

id

string

required

The model identifier, which can be referenced in the API endpoints.

[​](#param-created)

created

integer

required

The Unix timestamp (in seconds) when the model was created.

[​](#param-object)

object

string

required

The object type, which is always “model”.

[​](#param-input-token-price-per-m)

input_token_price_per_m

integer

required

The price per million input tokens.

[​](#param-output-token-price-per-m)

output_token_price_per_m

integer

required

The price per million output tokens.

[​](#param-title)

title

string

required

The title of the model.

[​](#param-description)

description

string

required

The description of the model.

[​](#param-context-size)

context_size

integer

required

The maximum context size of the model.

Last modified on August 12, 2025
