Skip to main content
GET
/
v1
/
attending
/
stats
Aggregate attending stats
curl --request GET \
  --url https://api.rewind.rest/v1/attending/stats \
  --header 'Authorization: Bearer <token>'
{
  "total_events": 123,
  "attended_events": 123,
  "by_category": [
    {
      "category": "<string>",
      "count": 123
    }
  ],
  "by_event_type": [
    {
      "event_type": "<string>",
      "count": 123
    }
  ],
  "by_year": [
    {
      "year": "<string>",
      "count": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rewind.rest/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.

Response

Stats

total_events
number
required
attended_events
number
required
by_category
object[]
required
by_event_type
object[]
required
by_year
object[]
required