Skip to main content
GET
/
v1
/
attending
/
players
List players you have watched play
curl --request GET \
  --url https://api.rewind.rest/v1/attending/players \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 42,
      "league": "mlb",
      "mlb_stats_id": 663728,
      "espn_id": "41292",
      "full_name": "Cal Raleigh",
      "primary_position": "C",
      "primary_number": "29",
      "birth_date": "1996-11-26",
      "birth_city": "Harrisonburg",
      "birth_state_province": "VA",
      "birth_country": "USA",
      "height": "6' 2\"",
      "weight": 235,
      "bats": "B",
      "throws": "R",
      "primary_team": {
        "id": 136,
        "league": "mlb",
        "abbreviation": "SEA",
        "location": "Seattle",
        "name": "Mariners",
        "full_name": "Seattle Mariners",
        "primary_color": "#0C2C56",
        "secondary_color": "#005C5C",
        "tertiary_color": null,
        "ui_tint_color": "#0C2C56",
        "logo_url": "https://www.mlbstatic.com/team-logos/136.svg",
        "logo_dark_url": "https://www.mlbstatic.com/team-logos/team-cap-on-dark/136.svg",
        "logo_light_url": "https://www.mlbstatic.com/team-logos/team-cap-on-light/136.svg",
        "conference": "AL",
        "division": "AL West"
      },
      "debut_date": "2021-07-11",
      "college_name": "Florida State",
      "awards": [
        {
          "season": "2025",
          "id": "ALSS",
          "name": "AL Silver Slugger"
        }
      ],
      "photo_silo": {
        "cdn_url": "https://cdn.rewind.rest/.../players/silo/123",
        "thumbhash": "<string>",
        "dominant_color": "#1a3a6c",
        "accent_color": "#c4ced4"
      },
      "photo_full": {
        "cdn_url": "https://cdn.rewind.rest/.../players/silo/123",
        "thumbhash": "<string>",
        "dominant_color": "#1a3a6c",
        "accent_color": "#c4ced4"
      }
    }
  ],
  "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
limit
integer
default:50
Required range: 1 <= x <= 200
league
string
Example:

"mlb"

team_id
integer | null
Example:

136

name
string

Case-insensitive substring match on full_name. Returns multiple hits for common names; disambiguate via league + team_id + primary_position in the response.

Example:

"julio"

Response

Players

data
object[]
required
pagination
object
required