/v1/player
Player profile
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/cfb-api/v1/player" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cfb-api/v1/player", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cfb-api/v1/player");
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/cfb-api/v1/player",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"player": {
"id": "4918121",
"name": "Cole Adams",
"team": "Alabama Crimson Tide",
"active": true,
"height": "5' 10\"",
"jersey": "7",
"status": "active",
"weight": "183 lbs",
"headshot": "https://a.espncdn.com/i/headshots/college-football/players/full/4918121.png",
"position": "WR",
"last_name": "Adams",
"first_name": "Cole",
"position_name": "Wide Receiver"
}
},
"meta": {
"timestamp": "2026-06-07T16:46:21.883Z",
"request_id": "000b1984-876d-44e3-aebe-518969acafd4"
},
"status": "ok",
"message": "Player retrieved successfully",
"success": true
}