Ir al contenido
GET /v1/meta

Service metadata and endpoint catalog

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/leetcode-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/leetcode-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/leetcode-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/leetcode-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": {
        "source": "LeetCode GraphQL API (leetcode.com/graphql, live)",
        "service": "leetcode-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/user": "A member's coding profile and solved counts (username=votrubac).",
            "GET /v1/daily": "Today's LeetCode daily coding challenge.",
            "GET /v1/contest": "A member's contest rating and ranking (username=votrubac).",
            "GET /v1/calendar": "A member's solving streak and activity (username=votrubac)."
        },
        "description": "Live data from LeetCode, the largest coding-interview and competitive-programming community, via its public GraphQL API. The user endpoint returns a member's coding profile (global ranking, reputation, country, problems solved split by difficulty, total submissions and badges); the contest endpoint returns a member's competitive standing (contest rating, global ranking, contests attended, top percentage); the calendar endpoint returns a member's current solving streak, total active days and submissions over the past year; the daily endpoint returns LeetCode's daily coding challenge (today's problem, difficulty, acceptance rate and topic tags). Live, no key, nothing stored. Distinct from the GitHub, Codeforces, Codewars and Stack Exchange developer APIs — this is LeetCode's own member profiles, contest ratings and daily challenge.",
        "upstream_status": "ok",
        "daily_challenge_date": "2026-06-10"
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:41.582Z",
        "request_id": "35c53903-5e8e-4f6b-81dc-df1aefed18b7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}