Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/codewars-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "source": "Codewars public API (live)",
        "service": "codewars-api",
        "endpoints": {
            "GET /v1/kata": "A code challenge in full with community stats (id=valid-braces).",
            "GET /v1/meta": "This document.",
            "GET /v1/user": "A member's full reputation profile (username=g964).",
            "GET /v1/authored": "Kata a member has created (username=g964).",
            "GET /v1/completed": "Kata a member has solved, paginated (username=, page).",
            "GET /v1/leaderboard": "The global honor leaderboard — top members by honor (limit=50)."
        },
        "description": "Live profile, ranking and challenge data from Codewars, the competitive-programming community: a member's whole standing (honor points, overall kyu/dan rank with score, per-language ranks, clan, global leaderboard position, kata completed and authored); the paginated list of kata they've solved with the languages and dates; the kata they've authored with rank, languages and popularity; and any code challenge in full (category, difficulty, tags, languages, total completed/attempts, stars and vote score). Live, no key, nothing stored. Distinct from Codeforces, GitHub and Stack Exchange APIs — this is the Codewars honor, kyu-rank, clan, leaderboard and kata-challenge graph.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T14:05:33.358Z",
        "request_id": "b4718060-57ab-47e4-9df4-955c67913729"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}