/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}