Zum Inhalt springen
GET /v1/meta

Usage notes

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/wikibooks-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}