Skip to main content
GET
/
v1
/
models
List Models
curl --request GET \
  --url https://api.perplexity.ai/v1/models
{
  "object": "list",
  "data": [
    {
      "id": "anthropic/claude-sonnet-4-6",
      "object": "model",
      "created": 0,
      "owned_by": "anthropic"
    },
    {
      "id": "openai/gpt-5.4",
      "object": "model",
      "created": 0,
      "owned_by": "openai"
    },
    {
      "id": "perplexity/sonar",
      "object": "model",
      "created": 0,
      "owned_by": "perplexity"
    }
  ]
}

Response

200 - application/json

Successful response with the list of available models.

Response from the List Models endpoint. Contains a list of available models.

object
enum<string>
required

The object type, which is always list.

Available options:
list
Example:

"list"

data
object[]
required

A list of model objects.