/v1/meta
Usage notes
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/wikibooks-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wikibooks-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wikibooks-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/wikibooks-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": {
"note": "Wikibooks is Wikimedia's library of free, community-written textbooks, manuals and learning guides — programming, mathematics, languages, sciences, cooking, music and much more. /v1/search?q=python programming = search the library, returning matching book/page titles with a snippet and word count; /v1/book?title=Python Programming = a book's overview (its description and plain-text introduction, a cover thumbnail and the URL); /v1/chapters?title=Python Programming = the book's chapters, i.e. its subpages (e.g. Python Programming/Operators, Python Programming/Classes), each with the chapter name and URL — so you can browse a whole book's structure. Titles are Wikibooks page names; get the exact title from /v1/search first. Content is licensed CC BY-SA by the Wikibooks community. Distinct from book-metadata catalogues — this is actual free educational content. For travel guides use Wikivoyage, for the encyclopaedia use Wikipedia.",
"source": "Wikibooks — free open-content textbooks (en.wikibooks.org, a Wikimedia project)",
"endpoints": [
"/v1/search",
"/v1/book",
"/v1/chapters",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T16:23:37.445Z",
"request_id": "80c66a09-d3c0-4add-a19a-757c95a9326d"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}