Skip to main content
GET
/
v1
/
events
curl -X GET "https://api.getstrato.dev/v1/events?status=scheduled&time=upcoming" \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "data": [
    {
      "id": "evt_xyz789",
      "name": "Q1 Cardiology Advisory Board",
      "description": "Quarterly advisory board meeting with key cardiology KOLs",
      "event_type": "advisory_board",
      "status": "scheduled",
      "start_date": "2024-03-15T09:00:00Z",
      "end_date": "2024-03-15T17:00:00Z",
      "location": {
        "type": "in_person",
        "venue": "The Ritz-Carlton",
        "city": "San Francisco",
        "country": "US"
      },
      "attendee_count": 12,
      "rsvp_stats": {
        "confirmed": 8,
        "pending": 3,
        "declined": 1
      },
      "created_at": "2024-01-10T08:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 5
  }
}

Query Parameters

page
integer
default:"1"
Page number
per_page
integer
default:"20"
Results per page (max 100)
status
string
Filter by status. Options: draft, scheduled, active, completed, cancelled
event_type
string
Filter by event type. Options: advisory_board, speaker_program, conference, workshop, webinar, dinner, other
time
string
Filter by time. Options: upcoming, past, today, this_week, this_month
start_date
string
Filter events starting after this date (ISO 8601)
end_date
string
Filter events ending before this date (ISO 8601)
Search by event name or description

Response

data
array
curl -X GET "https://api.getstrato.dev/v1/events?status=scheduled&time=upcoming" \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "data": [
    {
      "id": "evt_xyz789",
      "name": "Q1 Cardiology Advisory Board",
      "description": "Quarterly advisory board meeting with key cardiology KOLs",
      "event_type": "advisory_board",
      "status": "scheduled",
      "start_date": "2024-03-15T09:00:00Z",
      "end_date": "2024-03-15T17:00:00Z",
      "location": {
        "type": "in_person",
        "venue": "The Ritz-Carlton",
        "city": "San Francisco",
        "country": "US"
      },
      "attendee_count": 12,
      "rsvp_stats": {
        "confirmed": 8,
        "pending": 3,
        "declined": 1
      },
      "created_at": "2024-01-10T08:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 5
  }
}