Perplexity · Example Payload

Perplexity Listmodels Example

Perplexity Listmodels Example is an example object payload from Perplexity, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listModels",
  "method": "GET",
  "path": "/v1/models",
  "summary": "List Models",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "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"
          }
        ]
      }
    }
  ]
}