Skip to main content
GET
/
v1
/
organizations
/
all
Get All Organizations
curl --request GET \
  --url https://api.shoal.xyz/v1/organizations/all \
  --header 'Authorization: Bearer <token>'
Returns a paginated list of all organizations tracked by Shoal. Each organization represents a project, protocol, company, or institution in the digital asset ecosystem. Use this to build a directory, populate a search index, or discover which organizations are available to query.

Query Parameters

  • limit (integer, default: 50, max: 50)
  • offset (integer, default: 0, max: 500)

Request

cURL
curl -X GET "https://api.shoal.xyz/v1/organizations/all?limit=50&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response (200)

{
  "limit": 50,
  "offset": 0,
  "data": [
    {
      "id": 526,
      "label": "Organization Name",
      "aliases": ["Alias1", "Alias2"]
    }
  ]
}