/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/nfl-api/v1/player" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nfl-api/v1/player", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nfl-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/nfl-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": "3139477",
"age": 30,
"name": "Patrick Mahomes",
"team": "Kansas City Chiefs",
"active": true,
"height": "6' 2\"",
"jersey": "15",
"status": "active",
"weight": "225 lbs",
"college": "Texas Tech",
"headshot": "https://a.espncdn.com/i/headshots/nfl/players/full/3139477.png",
"position": "QB",
"last_name": "Mahomes",
"experience": "10th Season",
"first_name": "Patrick",
"date_of_birth": "17/9/1995",
"position_name": "Quarterback"
}
},
"meta": {
"timestamp": "2026-06-07T16:46:37.843Z",
"request_id": "4309803c-a901-4b21-bf03-73963c2d0744"
},
"status": "ok",
"message": "Player retrieved successfully",
"success": true
}