Skip to main content
GET
/
v1
/
attending
/
events
List attended events
curl --request GET \
  --url https://api.rewind.rest/v1/attending/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 142,
      "category": "sports",
      "event_type": "mlb_game",
      "event_date": "2024-08-12",
      "event_datetime": "2024-08-12T19:10:00Z",
      "title": "Seattle Mariners vs Houston Astros",
      "subtitle": "Mariners 4, Astros 2",
      "series_id": "mlb-2024-mariners",
      "external_id": "745423",
      "external_source": "mlb_stats_api",
      "event_data": {
        "season": 2024,
        "home_team": "Seattle Mariners",
        "away_team": "Houston Astros",
        "home_score": 4,
        "away_score": 2,
        "my_team_won": true,
        "winning_pitcher": "Logan Gilbert"
      },
      "notes": null,
      "attended": true,
      "venue": {
        "id": 12,
        "name": "T-Mobile Park",
        "city": "Seattle",
        "state": "WA",
        "country": "US",
        "latitude": 47.5914,
        "longitude": -122.3325,
        "capacity": 47929
      },
      "tickets": [
        {
          "id": 871,
          "vendor": "ticketmaster",
          "order_id": "32-43215/SEA",
          "section": "147",
          "row": "15",
          "seat": "12",
          "quantity": 2,
          "total_price_cents": 8400,
          "currency": "USD",
          "purchased_at": "2024-06-15T18:42:11Z"
        }
      ]
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 150,
    "total_pages": 8
  }
}

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.

Query Parameters

page
integer
default:1
Required range: x >= 1
Example:

1

limit
integer
default:20
Required range: 1 <= x <= 100
Example:

20

category
enum<string>
Available options:
sports,
music,
arts
Example:

"sports"

event_type
string
Example:

"mlb_game"

season
integer | null
Example:

2024

year
integer | null
Example:

2024

venue_id
integer | null
Example:

12

attended
integer | null
Required range: 0 <= x <= 1
Example:

1

team
string

Case-insensitive substring match on event_data.home_team.name OR event_data.away_team.name. Returns games where this team was either side.

Example:

"mariners"

team_id
integer | null

Exact match on event_data.home_team.id OR event_data.away_team.id. Use league-native team ids (MLB Stats id for MLB, ESPN team id for everything else).

Example:

136

Response

Attended events

data
object[]
required
pagination
object
required