Skip to main content
GET
/
v1
/
models
curl https://router.requesty.ai/v1/models \
  -H "Authorization: Bearer YOUR_REQUESTY_API_KEY"
{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-4o",
      "object": "model",
      "created": 1715367049,
      "owned_by": "openai"
    },
    {
      "id": "anthropic/claude-sonnet-4-20250514",
      "object": "model",
      "created": 1715367049,
      "owned_by": "anthropic"
    },
    {
      "id": "google/gemini-2.5-pro",
      "object": "model",
      "created": 1715367049,
      "owned_by": "google"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.requesty.ai/llms.txt

Use this file to discover all available pages before exploring further.

curl https://router.requesty.ai/v1/models \
  -H "Authorization: Bearer YOUR_REQUESTY_API_KEY"
{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-4o",
      "object": "model",
      "created": 1715367049,
      "owned_by": "openai"
    },
    {
      "id": "anthropic/claude-sonnet-4-20250514",
      "object": "model",
      "created": 1715367049,
      "owned_by": "anthropic"
    },
    {
      "id": "google/gemini-2.5-pro",
      "object": "model",
      "created": 1715367049,
      "owned_by": "google"
    }
  ]
}
List all models available through Requesty’s routing. When authenticated with an API key, returns only the models approved for your organization. Without authentication, returns all publicly available models. Browse the full catalog interactively on the Model Library.

Headers

Authorization
string

Optional Bearer token with your Requesty API key to get only approved models for your organization

Pattern: ^Bearer .+

Response

List of available models

object
enum<string>
required

The object type, always 'list'

Available options:
list
data
object[]
required

The list of available models

Last modified on May 26, 2026