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>'

Documentation Index

Fetch the complete documentation index at: https://docs.shoal.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Returns a paginated list of all organizations tracked by Shoal. Each organization represents a project, protocol, company, or institution in the digital asset ecosystem.
This is a bulk directory endpoint intended for higher-tier export and discovery workflows. It is API-key-only. For most applications, prefer /v1/organizations/byOrganizationName or /v1/organizations/byOrganizationId.

Query Parameters

  • limit (integer, default: 25, max: 25)
  • offset (integer, default: 0, max: 100)

Request

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

Response (200)

{
  "limit": 25,
  "offset": 0,
  "data": [
    {
      "id": 526,
      "label": "Ethereum"
    }
  ]
}