/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/soccer-api/v1/team" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soccer-api/v1/team", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soccer-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/soccer-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": "359",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/359.png",
"name": "Arsenal",
"color": "e20520",
"record": "26-7-5",
"location": "Arsenal",
"nickname": "Arsenal",
"standing": "1st in English Premier League",
"abbreviation": "ARS",
"alternate_color": "003399"
},
"league": "eng.1"
},
"meta": {
"timestamp": "2026-06-07T16:46:32.876Z",
"request_id": "cc410124-8598-4ca9-830a-759304b0e5c4"
},
"status": "ok",
"message": "Team retrieved successfully",
"success": true
}