Skip to content
GET /v1/search

Search players

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/tennislive-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/tennislive-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tennislive-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tennislive-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/tennislive-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": 12,
        "query": "djokovic",
        "players": [
            {
                "id": "4a27bb1c-2422-55c3-208b-9e9d8c1f30af",
                "name": "Novak Djokovic",
                "image": "https://a.espncdn.com/i/headshots/tennis/players/full/296.png"
            },
            {
                "id": "050a7454-6819-35d3-bac5-a76f208518a3",
                "name": "Lazar Djokovic",
                "image": "https://a.espncdn.com/i/headshots/mens-college-basketball/players/full/5175368.png",
                "subtitle": "VCU Rams"
            },
            {
                "id": "0ea47a77-6590-a2b4-d1b4-daa9e8679e3c",
                "name": "Aleksandar Djokovic",
                "subtitle": "Otelul Galati"
            },
            {
                "id": "440f15ef-7fb7-b056-4025-e9abcd5cd2f9",
                "name": "Nikola Djokovic",
                "subtitle": "Northwest University Eagles"
            },
            {
                "id": "64fba509-cd48-31c6-9526-2ba2da358b89",
                "name": "Adriana Djokovic",
                "subtitle": "West Alabama Tigers"
            },
            {
                "id": "6bbeb064-7d54-3086-93a3-3642a8f63e18",
                "name": "Adriana Djokovic",
                "image": "https://a.espncdn.com/i/headshots/womens-college-basketball/players/full/5108003.png",
                "subtitle": "Sam Houston Bearkats"
            },
            {
                "id": "a1fe1a8f-6990-3a70-a105-77ab16000cd5",
                "name": "Jasna Djokovic",
                "subtitle": "Montenegro"
            },
            {
                "id": "a5f328be-e991-4efd-bab3-ce6c1ff2b656",
                "name": "Marko Djokovic"
            },
            {
                "id": "a5ff5bdc-106a-c946-e83a-57ab4e458f88",
                "name": "Gojko Djokovic"
            },
            {
                "id": "bde3005a-da70-1ff1-f906-69421ecbb50c",
                "name": "Nina Djokovic",
                "subtitle": "Bethel (TN) Wildcats"
            },
            {
                "id": "e3fe26d7-883d-9432-61d1-177f1888e20d",
                "name": "Nikola Djokovic",
                "subtitle": "Northwest University Eagles"
            },
            {
                "id": "f3595f33-170f-8efc-2de7-9df94b280900",
                "name": "Damjan Djokovic",
                "subtitle": "CFR Cluj-Napoca"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-08T01:20:05.795Z",
        "request_id": "5accd3c5-2c4b-479e-93d9-0d64ba621633"
    },
    "status": "ok",
    "message": "Players retrieved successfully",
    "success": true
}