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>"
    }
  ]
}
  • limit and offset: the applied pagination window
  • total: total visible organisations in the catalogue
  • organisations: the current page of organisation metadata

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 19, 2026