Naar de inhoud
GET /v1/bytes

Generate exactly N bytes

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

Voorbeeldrespons

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

{
    "data": {
        "text": "excepteur cupidatat aperiam numquam perspiciatis ut ut unde sit eiusmod vel voluptate beatae quisquam aliquid ipsa ea ullamco ipsum ea quis illum ipsam eum vel laboris anim irure mollit perspiciatis e",
        "type": "bytes",
        "count": 200
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:24.015Z",
        "request_id": "7d856012-6a1b-49bd-9de4-3c42cf11b741"
    },
    "status": "ok",
    "message": "Bytes generated",
    "success": true
}