Skip to main content
GET
/
v1
/
models
List available models
curl --request GET \
  --url https://router.requesty.ai/v1/models
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "model",
      "created": 123,
      "owned_by": "system",
      "input_price": 123,
      "caching_price": 123,
      "cached_price": 123,
      "output_price": 123,
      "max_output_tokens": 123,
      "context_window": 123,
      "supports_caching": true,
      "supports_vision": true,
      "supports_computer_use": true,
      "supports_reasoning": true,
      "description": "<string>"
    }
  ]
}

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.

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 April 27, 2026