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

# List players you have watched play

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

Returns players who appeared in any event you attended, filterable by league, team, and name. Includes both photo variants when available.

## Authorization

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

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

## Query Parameters

#### page (query, integer)

#### limit (query, integer)

#### league (query, string)

#### team\_id (query, integer)

#### name (query, string)

Case-insensitive substring match on full\_name. Returns multiple hits for common names; disambiguate via league + team\_id + primary\_position in the response.

## Response

#### 200

Players

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

#### properties

#### 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)

#### 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.

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

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

#### pagination (object, required)

#### properties

#### page (integer, required)

#### limit (integer, required)

#### total (integer, required)

#### total\_pages (integer, required)

#### 401

Unauthorized

#### error (string, required)

#### status (integer, required)

#### Request

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

```javascript JavaScript
const res = await fetch('https://api.rewind.rest/v1/attending/players', {
  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',
    headers={'Authorization': 'Bearer <token>'}
)
data = res.json()
```

#### Response

```json 200
{
  "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": "\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"
      },
      "debut_date": "2021-07-11",
      "college_name": "Florida State",
      "awards": [
        "\u2026"
      ],
      "photo_silo": {
        "cdn_url": "\u2026",
        "thumbhash": "\u2026",
        "dominant_color": "\u2026",
        "accent_color": "\u2026"
      },
      "photo_full": {
        "cdn_url": "\u2026",
        "thumbhash": "\u2026",
        "dominant_color": "\u2026",
        "accent_color": "\u2026"
      }
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 150,
    "total_pages": 8
  }
}
```

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