Endpoints

Get Event

Retrieve a single event with its associated runs (distance variants). Returns the event and an array of eventRuns.

GET/v1/partner/events/:id
curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/v1/partner/events/e72tuv901wxy234

Path Parameters

idstringrequired

The event ID.

Required Scope

read:events
{
  "data": {
    "event": {
      "_id": "e72tuv901wxy234",
      "name": "Lakefront 5K - June 14",
      "slug": "lakefront-5k-june-14",
      "type": "race",
      "date": "2025-06-14",
      "organizationId": "k57abc123def456",
      "seriesId": "s93mno456pqr789",
      "startTime": "08:00",
      "description": "Weekly lakefront 5K race along the scenic shore path.",
      "websiteUrl": "https://northshorerace.com/lakefront-5k"
    },
    "runs": [
      {
        "_id": "r41abc567def890",
        "eventId": "e72tuv901wxy234",
        "distance": 5,
        "distanceUnit": "km"
      }
    ]
  }
}