Docs API & Developer GET /api/v1/events

GET /api/v1/events

List all events created by your business with ticket and revenue data.


GET /api/v1/events

Returns all events for your business including ticket counts and revenue.

Request

curl -X GET https://app.6xcom.com/api/v1/events \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response

{
  "data": [
    {
      "id": 3,
      "title": "6X Product Launch",
      "slug": "6x-product-launch",
      "status": "approved",
      "event_date": "2026-07-15",
      "total_tickets": 200,
      "tickets_sold": 87,
      "revenue": 435.00
    }
  ]
}
Was this article helpful?