Endpoints

List Participants

Returns registered participants for a specific event.

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

Path Parameters

idstringrequired

The event ID.

Required Scope

read:participants
{
  "data": [
    {
      "_id": "p89xyz345uvw678",
      "eventId": "e72tuv901wxy234",
      "eventRunId": "r41abc567def890",
      "email": "runner@example.com",
      "name": "Alex Johnson",
      "registrationType": "online",
      "registrationStatus": "confirmed",
      "source": "api"
    }
  ]
}