Source: https://dinakar-rewind.docs.pageloop.ai/api-reference/attending/getattendedplayer

# Get a player you have watched play

GET `https://api.rewind.rest/v1/attending/players/{id}`

Returns the player bio with both photo variants when available, plus a list of every attended event in which they appeared along with that game's stat lines.

## Authorization

#### Authorization (header, string, required)

API key. Read keys (rw\_live\_...) access GET endpoints. Admin keys (rw\_admin\_...) access all endpoints.

## Path Parameters

#### id (path, integer, required)

## Response

#### 200

Player detail

#### id (number, required)

#### league (string, required)

#### mlb\_stats\_id (number, required)

#### espn\_id (string, required)

#### full\_name (string, required)

#### primary\_position (string, required)

#### primary\_number (string, required)

#### birth\_date (string, required)

#### birth\_city (string, required)

#### birth\_state\_province (string, required)

#### birth\_country (string, required)

#### height (string, required)

#### weight (integer, required)

#### bats (string, required)

#### throws (string, required)

#### primary\_team (object, required)

#### properties

#### id (integer, required)

#### league (string, required)

#### abbreviation (string, required)

#### location (string, required)

#### name (string, required)

#### full\_name (string, required)

#### primary\_color (string, required)

#### secondary\_color (string, required)

#### tertiary\_color (string, required)

#### ui\_tint\_color (string, required)

#### logo\_url (string, required)

#### logo\_dark\_url (string, required)

#### logo\_light\_url (string, required)

#### conference (string, required)

#### division (string, required)

#### debut\_date (string, required)

#### college\_name (string, required)

#### awards (array of 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.

#### properties

#### season (string, required)

#### id (string, required)

#### name (string, required)

#### photo\_silo (object, required)

#### properties

#### cdn\_url (string, required)

#### thumbhash (string, required)

#### dominant\_color (string, required)

#### accent\_color (string, required)

#### photo\_full (object, required)

#### properties

#### cdn\_url (string, required)

#### thumbhash (string, required)

#### dominant\_color (string, required)

#### accent\_color (string, required)

#### supported (boolean, required)

#### season\_stats (object)

#### career (object)

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 (object)

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

#### attended\_summary (object)

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

#### season\_attended\_summary (object)

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.

#### season\_attended\_summary\_season (number, required)

Season the season\_attended\_summary covers (matches season\_stats.season when available, otherwise the current calendar year UTC).

#### appearances (array of object, required)

#### properties

#### event\_id (number, required)

#### event\_date (string, required)

#### title (string, required)

#### team (object, required)

#### is\_home (boolean, required)

#### batting\_line (object, required)

#### pitching\_line (object, required)

#### decision (string, required)

#### notable (boolean, required)

#### appearance\_count (number, required)

#### 401

Unauthorized

#### error (string, required)

#### status (integer, required)

#### 404

Not found

#### error (string, required)

#### status (integer, required)

#### Request

```bash cURL
curl -X GET 'https://api.rewind.rest/v1/attending/players/{id}' \
  -H 'Authorization: Bearer <token>'
```

```javascript JavaScript
const res = await fetch('https://api.rewind.rest/v1/attending/players/{id}', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <token>',
  },
});
const data = await res.json();
```

```python Python
import requests

res = requests.get(
    'https://api.rewind.rest/v1/attending/players/{id}',
    headers={'Authorization': 'Bearer <token>'}
)
data = res.json()
```

#### Response

```json 200
{
  "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_stats": {},
  "career": {},
  "splits": {},
  "attended_summary": {},
  "season_attended_summary": {},
  "season_attended_summary_season": 0,
  "appearances": [
    {
      "event_id": 0,
      "event_date": "string",
      "title": "string",
      "team": {
        "id": "\u2026",
        "league": "\u2026",
        "abbreviation": "\u2026",
        "location": "\u2026",
        "name": "\u2026",
        "full_name": "\u2026",
        "primary_color": "\u2026",
        "secondary_color": "\u2026",
        "tertiary_color": "\u2026",
        "ui_tint_color": "\u2026",
        "logo_url": "\u2026",
        "logo_dark_url": "\u2026",
        "logo_light_url": "\u2026",
        "conference": "\u2026",
        "division": "\u2026"
      },
      "is_home": true,
      "batting_line": {},
      "pitching_line": {},
      "decision": "string",
      "notable": true
    }
  ],
  "appearance_count": 0
}
```

```json 401
{
  "error": "Not found",
  "status": 404
}
```

```json 404
{
  "error": "Not found",
  "status": 404
}
```
