Ir al contenido
GET /v1/search

Search players

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/wnba-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 12,
        "query": "clark",
        "players": [
            {
                "id": "5ec40e1c-3104-322e-b80f-f358ea26aad4",
                "name": "Caitlin Clark",
                "image": "https://a.espncdn.com/i/headshots/wnba/players/full/4433403.png",
                "subtitle": "Indiana Fever"
            },
            {
                "id": "e50b7c1f-0792-372f-d2b9-ce80188f029f",
                "name": "Jordan Clarkson",
                "image": "https://a.espncdn.com/i/headshots/nba/players/full/2528426.png",
                "subtitle": "New York Knicks"
            },
            {
                "id": "44d75406-fd2f-49e2-ff9a-e3be72e82cf2",
                "name": "Wyndham Clark",
                "image": "https://a.espncdn.com/i/headshots/golf/players/full/11119.png"
            },
            {
                "id": "ac9aa77d-dbe6-3064-8bef-208071246a63",
                "name": "Brandon Clarke",
                "image": "https://a.espncdn.com/i/headshots/nba/players/full/3906665.png",
                "subtitle": "Memphis Grizzlies"
            },
            {
                "id": "22776ecf-aa0e-33ac-b56b-8c0eccab146a",
                "name": "Denzel Clarke",
                "image": "https://a.espncdn.com/i/headshots/mlb/players/full/4918085.png",
                "subtitle": "Athletics"
            },
            {
                "id": "09609790-79bb-81d4-522b-7a036e404c50",
                "name": "Alysha Clark",
                "image": "https://a.espncdn.com/i/headshots/wnba/players/full/924.png",
                "subtitle": "Dallas Wings"
            },
            {
                "id": "99fef066-3b7b-f035-c202-879446d10d7c",
                "name": "Kenny Clark",
                "image": "https://a.espncdn.com/i/headshots/nfl/players/full/3122752.png",
                "subtitle": "Dallas Cowboys"
            },
            {
                "id": "242e57e6-a3b0-312d-aa65-c7ccfd7e87d0",
                "name": "Bud Clark",
                "image": "https://a.espncdn.com/i/headshots/nfl/players/full/4430262.png",
                "subtitle": "Seattle Seahawks"
            },
            {
                "id": "f3154073-7bfa-becf-6e3f-2647df260028",
                "name": "Steve Clark",
                "image": "https://a.espncdn.com/i/headshots/soccer/players/full/16151.png",
                "subtitle": "Houston Dynamo FC"
            },
            {
                "id": "86ecf912-5c04-e624-cde9-2350cd27f16c",
                "name": "Emma Clarke",
                "image": "https://a.espncdn.com/i/headshots/womens-college-basketball/players/full/4398759.png",
                "subtitle": "Texas Tech Lady Raiders"
            },
            {
                "id": "f81f5170-46c0-6dd9-634c-45652c989cf7",
                "name": "Damone Clark",
                "image": "https://a.espncdn.com/i/headshots/nfl/players/full/4362636.png",
                "subtitle": "Detroit Lions"
         
…