Naar de inhoud
GET /v1/meta

Usage notes

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/lorem-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Classic Lorem Ipsum placeholder text. /v1/paragraphs?count=3&format=text|html (start_lorem=true begins with the canonical 'Lorem ipsum dolor…'); /v1/sentences?count=5; /v1/words?count=25; /v1/list?count=5&format=text|html (bullet items); /v1/bytes?count=200 (exact byte length). Generated locally — fast and always available.",
        "source": "local Lorem Ipsum generator",
        "endpoints": [
            "/v1/paragraphs",
            "/v1/sentences",
            "/v1/words",
            "/v1/list",
            "/v1/bytes",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:24.316Z",
        "request_id": "a1d2fd8f-5485-4749-83d9-43963d17af5f"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}