Intervals Developers
API Reference
Sign inGet API key
IntroductionAuthenticationErrorsPaginationRate LimitsIdempotency

Endpoints

GETYour organizationGETAll eventsGETRetrieve an eventPOSTCreate an eventGETAll registrationsPOSTRegister a participantGETAll recurrencesGETAll collectionsGETRetrieve a collectionGETEvents in a collection
Changelog
Sign inGet API key

Endpoints

Events in a collection

List events belonging to a collection, with the collection membership metadata and an inline event summary for each row.

GET/collections/:slug/events
curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/collections/lakefront-race-series/events?limit=20

Path Parameters

slugstringrequired

The collection slug

Query Parameters

limitnumberrequired

Items per page (1-100, default 50).

afterstring

Opaque cursor from a previous response's `cursor` field; returns the next page.

Authorization

read:collections

Response — Membership

collectionIdstringrequired

Collection ID

eventIdstringrequired

Event ID

displayOrdernumber

Display order within the collection

eventobjectrequired

Member event details

Response — Event

idstringrequired

Event ID

namestringrequired

Event name

slugstringrequired

URL slug

typeenum<string>required

Event type

Available options: race,runClub,timeTrial,other

datestringrequired

Event date (YYYY-MM-DD)

organizationIdstringrequired

Owning organization ID

startTimestring

Start time (HH:MM)

addressobject

Event location

latnumber

Latitude

lngnumber

Longitude

descriptionstring

Event description

websiteUrlstring

Event website URL

cardImageUrlstring

Card image URL (grid/list thumbnails).

coverImageUrlstring

Cover/hero image URL (event pages).

registrationUrlstring

Registration page URL

temporalStatusenum<string>required

Derived from the event's dates: past | in_progress | future.

Available options: past,in_progress,future

{
  "data": [
    {
      "collectionId": "c14abc789def012",
      "eventId": "e72tuv901wxy234",
      "displayOrder": 1,
      "event": {
        "id": "e72tuv901wxy234",
        "name": "Lakefront 5K - June 14",
        "slug": "lakefront-5k-june-14",
        "type": "race",
        "date": "2025-06-14",
        "organizationId": "k57abc123def456",
        "temporalStatus": "future"
      }
    }
  ],
  "hasMore": false
}

What you can build

Retrieve a collectionChangelog

Request

curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/collections/lakefront-race-series/events?limit=20

Response

{
  "data": [
    {
      "collectionId": "c14abc789def012",
      "eventId": "e72tuv901wxy234",
      "displayOrder": 1,
      "event": {
        "id": "e72tuv901wxy234",
        "name": "Lakefront 5K - June 14",
        "slug": "lakefront-5k-june-14",
        "type": "race",
        "date": "2025-06-14",
        "organizationId": "k57abc123def456",
        "temporalStatus": "future"
      }
    }
  ],
  "hasMore": false
}