Ir al contenido
GET /v1/meta

Service description & endpoints

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/cricketlive-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "service": "cricketlive-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/news": "Cricket news (league=).",
            "GET /v1/match": "Full scorecard for a match (league=, event=id from scoreboard).",
            "GET /v1/leagues": "Supported league aliases and ids.",
            "GET /v1/standings": "League table (league=).",
            "GET /v1/scoreboard": "Matches for a league (league=ipl|world-cup|big-bash|… or numeric id, dates=)."
        },
        "description": "Live professional cricket across many competitions (IPL, T20/ODI World Cup, Big Bash, County Championship, Sheffield Shield, Ranji Trophy and more): the live scoreboard, the full match scorecard with per-innings batting and bowling and dismissals, the league table and news. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:20:03.527Z",
        "request_id": "17c9b51c-14b2-45f9-b8d6-4f45a4cd0af1"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}