/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/chucknorris-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chucknorris-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chucknorris-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/chucknorris-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "chucknorris-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/random": "A random Chuck Norris joke (category=optional, e.g. dev).",
"GET /v1/search": "Full-text search the collection (q=, min 3 chars, limit=).",
"GET /v1/categories": "All joke categories."
},
"description": "The famous Chuck Norris joke collection via the open chucknorris.io API: pull a random joke (optionally from a category like dev, food or sport), list the available categories, or full-text search the collection. Real jokes, no key."
},
"meta": {
"timestamp": "2026-06-08T09:48:46.607Z",
"request_id": "49995389-1924-454c-bad3-a5c3f35e26eb"
},
"status": "ok",
"message": "Meta",
"success": true
}