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"
  ]
}
  • endpoints: the canonical endpoint IDs currently exposed 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 19, 2026