# All collections
Retrieve a list of event collections for your organization. A collection is a branded series that bundles distinct, independently-run events under one slug and profile page — Abbott World Marathon Majors, UTMB World Series, a local summer race series. An event can belong to several collections. Use collections to power a series landing page or season schedule on your own site.

GET /collections

## Query Parameters
- limit (number, required): Items per page (1-100, default 50).
- after (string): Opaque cursor from a previous response's `cursor` field; returns the next page.
- status (string): Filter by lifecycle status

## Authorization
read:collections

## Request Examples

### curl
```curl
curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/collections?status=active&limit=20
```

### JavaScript
```javascript
const res = await fetch(
  "https://api.intervals.run/collections?status=active&limit=20",
  {
  headers: { Authorization: "Bearer INTERVALS_PARTNER_API_KEY" },
  }
);
const { data } = await res.json();
```

## Responses

### 200 (200)
```json
{
  "data": [
    {
      "id": "c14abc789def012",
      "organizationId": "k57abc123def456",
      "name": "Lakefront Race Series",
      "slug": "lakefront-race-series",
      "description": "Our seasonal series of lakefront road races.",
      "status": "active",
      "cardImageUrl": "https://cdn.intervals.run/collections/lakefront-race-series-card.jpg"
    }
  ],
  "hasMore": false
}
```