/v1/team
Team detail
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/wnba-api/v1/team" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wnba-api/v1/team", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wnba-api/v1/team");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/wnba-api/v1/team",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"team": {
"id": "5",
"logo": "https://a.espncdn.com/i/teamlogos/wnba/500/ind.png",
"name": "Indiana Fever",
"color": "002d62",
"record": "5-5",
"location": "Indiana",
"nickname": "Fever",
"standing": "4th in Eastern Conference Division",
"abbreviation": "IND",
"alternate_color": "e03a3e"
}
},
"meta": {
"timestamp": "2026-06-08T01:20:08.288Z",
"request_id": "08203971-c0b4-4bbd-bcbd-5f37365a227e"
},
"status": "ok",
"message": "Team retrieved successfully",
"success": true
}