Skip to main content
GET
/
v1
/
attending
/
players
/
{id}
Get a player you have watched play
curl --request GET \
  --url https://api.rewind.rest/v1/attending/players/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
  },
  "supported": true,
  "season_attended_summary_season": 123,
  "appearances": [
    {
      "event_id": 123,
      "event_date": "<string>",
      "title": "<string>",
      "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"
      },
      "is_home": true,
      "batting_line": {},
      "pitching_line": {},
      "decision": "<string>",
      "notable": true
    }
  ],
  "appearance_count": 123,
  "season_stats": "<unknown>",
  "career": "<unknown>",
  "splits": "<unknown>",
  "attended_summary": "<unknown>",
  "season_attended_summary": "<unknown>"
}

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.

Path Parameters

id
integer | null
required

Response

Player detail

id
number
required
Example:

42

league
string
required
Example:

"mlb"

mlb_stats_id
number | null
required
Example:

663728

espn_id
string | null
required
Example:

"41292"

full_name
string
required
Example:

"Cal Raleigh"

primary_position
string | null
required
Example:

"C"

primary_number
string | null
required
Example:

"29"

birth_date
string | null
required
Example:

"1996-11-26"

birth_city
string | null
required
Example:

"Harrisonburg"

birth_state_province
string | null
required
Example:

"VA"

birth_country
string | null
required
Example:

"USA"

height
string | null
required
Example:

"6' 2\""

weight
integer | null
required
Example:

235

bats
string | null
required
Example:

"B"

throws
string | null
required
Example:

"R"

primary_team
object
required
debut_date
string | null
required
Example:

"2021-07-11"

college_name
string | null
required
Example:

"Florida State"

awards
object[]
required

Filtered to honors that matter (Silver Slugger, Gold Glove, MVP, All-MLB, Cy Young, etc.). Newest season first. Empty array when no qualifying awards or bio not yet enriched.

photo_silo
object
required
photo_full
object
required
supported
boolean
required
Example:

true

season_attended_summary_season
number | null
required

Season the season_attended_summary covers (matches season_stats.season when available, otherwise the current calendar year UTC).

appearances
object[]
required
appearance_count
number
required
season_stats
any
career
any

Year-by-year batting (or pitching for pitchers) for this player from MLB Stats. KV-cached 24h. Null for non-MLB players, players missing mlb_stats_id, or upstream errors.

splits
any

Current-season home/away/vs-LHP/vs-RHP splits. KV-cached 6h. Null when unavailable.

attended_summary
any

Career-scoped: your stat line aggregated across every attended game where this player appeared.

season_attended_summary
any

Current-season slice of attended_summary: this player's line across only the games you attended in season_attended_summary_season. Null for non-MLB players or when no season-stats season can be resolved.