Skip to main content
GET
/
v1
/
institutions
List Institutions
curl --request GET \
  --url https://api.waycore.com/v1/institutions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "institutionId": "<string>",
      "name": "<string>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<string>"
  },
  "meta": {
    "requestId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Opaque API key passed as Authorization: Bearer <key>. Keys are organization-bound, environment-bound (live or test), scope-carrying, and expiring. Create and manage keys via the console.

Query Parameters

cursor
string | null

Pagination cursor from a previous response.

limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 500
query
string | null

Search institutions by name or identifier.

Response

Successful Response

data
Institution · object[]
required
pagination
Pagination · object
required
meta
Meta · object
required