> ## 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.

# Get All Organizations

> Get all organizations

Returns a paginated list of all organizations tracked by Shoal. Each organization represents a project, protocol, company, or institution in the digital asset ecosystem.

<Note>
  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`.
</Note>

## Query Parameters

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

### Request

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

### Response (200)

```json theme={null}
{
  "limit": 25,
  "offset": 0,
  "data": [
    {
      "id": 526,
      "label": "Ethereum"
    }
  ]
}
```
