Skip to main content
GET
/
endpoints
List endpoints
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/endpoints', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "endpoints": [
    "<string>"
  ],
  "sample_models": [
    "ai21/jamba-large-1.7"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txt

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

Returns a lightweight discovery payload for tooling or operator workflows that need to know which public endpoint families are currently exposed. The response includes:
  • endpoints: the canonical gateway endpoint IDs currently surfaced by the API
  • sample_models: up to 10 recent visible model IDs from the public catalogue

Authorizations

Authorization
string
header
required

Bearer token authentication

Response

200 - application/json

Endpoint metadata

ok
boolean
endpoints
string[]
sample_models
string[]

Model identifier. This is a runtime string so newly released models can be used without waiting for an SDK update.

Last modified on May 6, 2026