Skip to content
GET /v1/generate

Generate a sequence

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/sequences-api

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

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 10,
        "terms": [
            0,
            1,
            1,
            2,
            3,
            5,
            8,
            13,
            21,
            34
        ],
        "sequence": "fibonacci"
    },
    "meta": {
        "timestamp": "2026-06-03T09:25:02.726Z",
        "request_id": "3a8c06b7-ee2c-4a01-ad7b-259f14fc5519"
    },
    "status": "ok",
    "message": "Generate a sequence",
    "success": true
}