Skip to content
GET /v1/bytes

Generate exactly N bytes

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/lorem-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}