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>"
    }
  ]
}

Headers

Authorization
string

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

Response

200
application/json

List of available models

The response is of type object.