Skip to main content

WNBA Player Gamelogs API Documentation

Requirement

You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.

Update Frequency

This endpoint updates every 60 seconds.

Description

This endpoint returns WNBA player gamelogs by player id.

API Endpoint

https://api.sportsblaze.com/wnba/v1/gamelogs/players/{season}/{id}.json

Parameters

key (required)

Your SportsBlaze API key.

type

The season type (e.g. Regular Season or Playoffs). Separate multiple types with a comma (e.g. Preseason,Regular Season).

id

The game id (e.g. 0805152b-9fa7-57c2-885f-3a21af6580c7). Separate multiple ids with a comma (e.g. 0805152b-9fa7-57c2-885f-3a21af6580c7,f062b202-b9c7-5a4b-b42b-13b1f92ece7a).

team

The away or home team id or name (e.g. cdd7db4a-cea9-5c56-918e-9843da405da2 or Indiana Fever). Separate multiple teams with a comma (e.g. Indiana Fever,Chicago Sky).

status

The game status (e.g. Final or In Progress). Separate multiple status with a comma (e.g. Final,In Progress).

Example URLs

Caitlin Clark 2025 player gamelogs:

https://api.sportsblaze.com/wnba/v1/gamelogs/players/2025/652136d7-d96f-5ea9-a5ed-04013b20312b.json?key=your_key

Example Response

{
"league": {
"id": "wnba",
"name": "WNBA",
"sport": "Basketball"
},
"player": {
"id": "652136d7-d96f-5ea9-a5ed-04013b20312b",
"name": "Caitlin Clark"
},
"games": [
{
"season": {
"year": 2025,
"type": "Regular Season"
},
"id": "3e11318d-1f39-58e0-a5a3-393518eafb0c",
"teams": {
"away": {
"id": "497d29c8-c2c8-5757-a0b1-5f3b57a66267",
"name": "New York Liberty"
},
"home": {
"id": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"name": "Indiana Fever"
}
},
"date": "2025-05-24T13:00:00Z",
"status": "Final",
"played": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"position": "PG",
"started": true,
"stats": {
"assists": 10,
"blocks": 0,
"blocks_received": 1,
"field_goals_attempts": 18,
"field_goals_made": 6,
"field_goals_pct": 0.33333333333333,
"fouls_drawn": 5,
"fouls_offensive": 0,
"fouls_personal": 5,
"fouls_technical": 0,
"free_throws_attempts": 5,
"free_throws_made": 4,
"free_throws_pct": 0.8,
"minus": 81,
"minutes": 38,
"plus": 87,
"plus_minus": 6,
"points": 18,
"points_fast_break": 2,
"points_in_the_paint": 8,
"points_second_chance": 0,
"rebounds_defensive": 5,
"rebounds_offensive": 0,
"rebounds": 5,
"steals": 0,
"three_pointers_attempts": 11,
"three_pointers_made": 2,
"three_pointers_pct": 0.18181818181818,
"time_on_court": "37:52",
"turnovers_personal": 10,
"two_pointers_attempts": 7,
"two_pointers_made": 4,
"two_pointers_pct": 0.57142857142857
}
},
{
"season": {
"year": 2025,
"type": "Regular Season"
},
"id": "7123bafa-29c5-5573-9bad-1ce18666eca5",
"teams": {
"away": {
"id": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"name": "Indiana Fever"
},
"home": {
"id": "a7da7495-ec09-5d2c-bae0-259f1f93af41",
"name": "Atlanta Dream"
}
},
"date": "2025-05-22T19:30:00Z",
"status": "Final",
"played": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"position": "PG",
"started": true,
"stats": {
"assists": 6,
"blocks": 0,
"blocks_received": 0,
"field_goals_attempts": 11,
"field_goals_made": 4,
"field_goals_pct": 0.36363636363636,
"fouls_drawn": 6,
"fouls_offensive": 1,
"fouls_personal": 5,
"fouls_technical": 0,
"free_throws_attempts": 5,
"free_throws_made": 3,
"free_throws_pct": 0.6,
"minus": 60,
"minutes": 32,
"plus": 65,
"plus_minus": 5,
"points": 11,
"points_fast_break": 0,
"points_in_the_paint": 6,
"points_second_chance": 0,
"rebounds_defensive": 4,
"rebounds_offensive": 0,
"rebounds": 4,
"steals": 1,
"three_pointers_attempts": 5,
"three_pointers_made": 0,
"three_pointers_pct": 0,
"time_on_court": "31:44",
"turnovers_personal": 4,
"two_pointers_attempts": 6,
"two_pointers_made": 4,
"two_pointers_pct": 0.66666666666667
}
}
],
"updated": "2025-05-25T16:01:04Z"
}