Skip to main content
GET
https://api.shoal.xyz/v1
/
v1
/
organizations
/
all
curl -X GET "https://api.shoal.xyz/v1/organizations/all?limit=50&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "limit": 50,
  "offset": 0,
  "data": [
    {
      "id": 1,
      "label": "Organization Name",
      "cover_image": "https://example.com/image.png",
      "aliases": ["Alias1", "Alias2"]
    }
  ]
}

Query Parameters

limit
integer
default:"50"
Number of results to return
offset
integer
default:"0"
Pagination offset
curl -X GET "https://api.shoal.xyz/v1/organizations/all?limit=50&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "limit": 50,
  "offset": 0,
  "data": [
    {
      "id": 1,
      "label": "Organization Name",
      "cover_image": "https://example.com/image.png",
      "aliases": ["Alias1", "Alias2"]
    }
  ]
}