/v1/search
Search players
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/nba-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nba-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nba-api/v1/search");
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/nba-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 11,
"query": "curry",
"players": [
{
"id": "5dda51f1-50c9-66e1-2026-400b73f34fad",
"name": "Stephen Curry",
"image": "https://a.espncdn.com/i/headshots/nba/players/full/3975.png",
"subtitle": "Golden State Warriors"
},
{
"id": "dc1a5379-4ca1-08ae-e6d0-2c04d99fe191",
"name": "Stephen Curry",
"subtitle": "Wittenberg Tigers"
},
{
"id": "3f599388-2fb2-3f8c-8f8b-a0ec58fd65d2",
"name": "Seth Curry",
"image": "https://a.espncdn.com/i/headshots/nba/players/full/2326307.png",
"subtitle": "Golden State Warriors"
},
{
"id": "947e3ce2-e8d9-36c2-b3f2-f184ee7c1746",
"name": "Caden Curry",
"image": "https://a.espncdn.com/i/headshots/nfl/players/full/4685324.png",
"subtitle": "Indianapolis Colts"
},
{
"id": "91c868dd-d0a8-397a-b1e5-7bec99915097",
"name": "John Curry",
"image": "https://a.espncdn.com/i/headshots/college-football/players/full/4908551.png",
"subtitle": "Texas Tech Red Raiders"
},
{
"id": "a3e19d9a-96b2-34ab-87ed-c2518a398add",
"name": "Ryan Curry",
"image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/5176030.png",
"subtitle": "Army Black Knights"
},
{
"id": "0b3ac7ac-3ea5-3d53-a37d-08137aac4df1",
"name": "Jaylen Curry",
"image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/5174611.png",
"subtitle": "Oklahoma State Cowboys"
},
{
"id": "d10f0473-6827-34ea-b19d-58aaa02a419e",
"name": "Savannah Curry",
"image": "https://a.espncdn.com/i/headshots/womens-college-basketball/players/full/5240931.png",
"subtitle": "Temple Owls"
},
{
"id": "7cd2b19e-0f86-3112-9a78-ceeec5d7694e",
"name": "Jayda Curry",
"image": "https://a.espncdn.com/i/headshots/womens-college-basketball/players/full/4899068.png",
"subtitle": "Louisville Cardinals"
},
{
"id": "b95cd943-4ca7-38ff-98f0-8b75d77de53c",
"name": "BJ Curry",
"image": "https://a.espncdn.com/i/headshots/college-football/players/full/5159387.png",
"subtitle": "Arkansas-Pine Bluff Golden Lions"
},
{
"id": "405b285d-d193-3fc3-97b9-e0befa0f16b5",
"name": "Jake Curry",
"subtitle": "Southern Illinois Salukis"
…