Documentation

GET /v1/models in the NexoRouter documentation.

GET /v1/models

Status: Stable public endpoint.

Returns publicly available model IDs through NexoRouter.

Endpoint

GET https://api.nexorouter.com/v1/models
Authorization: Bearer YOUR_NEXOROUTER_API_KEY

Minimal curl

curl https://api.nexorouter.com/v1/models \
  -H "Authorization: Bearer $NEXOROUTER_API_KEY"

Response shape

{
  "object": "list",
  "data": [
    {
      "id": "deepseek-v4-flash",
      "object": "model"
    }
  ]
}

The response may include additional OpenAI-compatible fields. Use the id field as the stable value for model.

When to call it

  • Before configuring a new SDK or tool.
  • During a deployment check.
  • When debugging model_not_found.
  • When comparing NexoRouter's public catalog with a local allowlist.
GET /v1/models — NexoRouter