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
}
}Returns events you have tickets for, optionally filtered by category, event_type, season, year, venue, team, and attendance status. Includes events you bought tickets for but did not attend (attended=false).
Team filtering matches against event_data.home_team / event_data.away_team (both teams in the game). team is a case-insensitive substring match on the team’s name (e.g. mariners, huskies). team_id is an exact match on the league’s team id (e.g. 136 for Seattle Mariners in MLB Stats; 264 for Washington Huskies in ESPN). Pass either, not both.
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.
API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.
x >= 11
1 <= x <= 10020
sports, music, arts "sports"
"mlb_game"
2024
2024
12
0 <= x <= 11
Case-insensitive substring match on event_data.home_team.name OR event_data.away_team.name. Returns games where this team was either side.
"mariners"
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).
136