Naar de inhoud
GET /v1/search

Search players

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cbb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cbb-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cbb-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cbb-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/cbb-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 10,
        "query": "duke",
        "players": [
            {
                "id": "e830e6ed-b4c3-3c18-b1bc-e92e55a20365",
                "name": "Duke Miles",
                "image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/4702049.png",
                "subtitle": "Vanderbilt Commodores"
            },
            {
                "id": "68ea6df3-6f20-3f2d-a68d-ec4bc7ae49e8",
                "name": "Duke Brennan",
                "image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/4870569.png",
                "subtitle": "Villanova Wildcats"
            },
            {
                "id": "698af11b-806d-3850-a08c-23ea6e969576",
                "name": "Duke Watson",
                "image": "https://a.espncdn.com/i/headshots/college-football/players/full/5136049.png",
                "subtitle": "Louisville Cardinals"
            },
            {
                "id": "9ca486a4-e495-308e-b6c2-a69070b158ee",
                "name": "Duke Deen",
                "image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/4897149.png",
                "subtitle": "Bradley Braves"
            },
            {
                "id": "212d1b9b-670f-6030-acac-56390ee4f009",
                "name": "Alexander Duke",
                "image": "https://a.espncdn.com/i/headshots/college-football/players/full/4240260.png",
                "subtitle": "Abilene Christian Wildcats"
            },
            {
                "id": "612e3b53-69f0-15aa-c5d7-38cf441a4837",
                "name": "Duke Johnson",
                "image": "https://a.espncdn.com/i/headshots/nfl/players/full/2969962.png",
                "subtitle": "Buffalo Bills"
            },
            {
                "id": "3a827b73-de14-99de-abd7-090a8daa1e43",
                "name": "Mitchell Duke",
                "subtitle": "Macarthur FC"
            },
            {
                "id": "00959d5b-70c4-5bfc-95e2-8118b5b0f315",
                "name": "Curt Dukes",
                "subtitle": "Duke Blue Devils"
            },
            {
                "id": "0124c0fd-7345-3135-8b64-577b13d73fa3",
                "name": "Jalen Duke",
                "subtitle": "Cumberlands Patriots"
            },
            {
                "id": "03b49230-8fe0-c346-0b8a-889a49177914",
                "name": "Jasmine Dukes",
                "subtitle": "Huston Tillotson Rams"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:09.613Z",
        "request_id": "301039b5-a02d-4f59-9cc9-9109c788605f"
    },
    "status": "ok",
    "message": "Players retrieved successfully",
    "success": true
}