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

fetch('https://api.phaseo.app/v1/pricing/models', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "models": [
    {}
  ]
}

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 visible provider-model-endpoint pricing metadata for models currently routable through the gateway. The response includes:
  • models: one entry per visible provider/model/endpoint pricing surface
  • meters: the active meter lines for that pricing surface, including unit, unit size, currency, and price per unit
  • display_name: the visible public model name when the pricing rule maps to a canonical public model
This route is useful for admin tooling, pricing inspections, or SDK consumers that want to understand the current public catalogue pricing surface without calculating a specific request bill.

Authorizations

Authorization
string
header
required

Bearer token authentication

Response

Pricing model list

ok
boolean
models
object[]
Last modified on May 6, 2026