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

fetch('https://api.phaseo.app/v1/organisations', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "limit": 50,
  "offset": 0,
  "total": 10,
  "organisations": [
    {
      "organisation_id": "<string>",
      "name": "<string>",
      "country_code": "<string>",
      "description": "<string>",
      "colour": "<string>"
    }
  ]
}

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 paginated list of catalogue organisations such as model vendors and labs known to the gateway. The response includes:
  • limit and offset: the applied pagination window
  • total: total visible organisations in the catalogue
  • organisations: the current page of organisation metadata
This route is primarily useful for tooling or internal admin flows that want stable provider-organisation metadata such as name, country code, description, and colour.

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

limit
integer
default:50

Limit the number of results

Required range: 1 <= x <= 250
offset
integer
default:0

Offset for pagination

Required range: x >= 0

Response

List of organisations

ok
boolean
Example:

true

limit
integer
Example:

50

offset
integer
Example:

0

total
integer
Example:

10

organisations
object[]
Last modified on May 6, 2026