/v1/player
A player profile by id
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/golflive-api/v1/player" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/golflive-api/v1/player", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/golflive-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/golflive-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": "10505",
"age": 33,
"hand": "RIGHT",
"name": "J.T. Poston",
"height": "6' 2\"",
"status": "active",
"weight": "165 lbs",
"college": "Western Carolina",
"country": "USA",
"headshot": "https://a.espncdn.com/i/headshots/golf/players/full/10505.png",
"last_name": "Poston",
"debut_year": 2018,
"first_name": "J.T.",
"turned_pro": 2015,
"birth_place": "Hickory, North Carolina ",
"date_of_birth": "1/6/1993"
}
},
"meta": {
"timestamp": "2026-06-08T01:20:04.442Z",
"request_id": "227eaba5-f073-431e-af9a-4f51228e292a"
},
"status": "ok",
"message": "Player retrieved successfully",
"success": true
}