Naar de inhoud
GET /v1/expand

Expand a recurrence rule

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 10,
        "rrule": "FREQ=WEEKLY;BYDAY=MO,WE,FR;COUNT=10",
        "start": "2026-01-05T09:00:00.000Z",
        "finite": true,
        "occurrences": [
            "2026-01-05T09:00:00.000Z",
            "2026-01-07T09:00:00.000Z",
            "2026-01-09T09:00:00.000Z",
            "2026-01-12T09:00:00.000Z",
            "2026-01-14T09:00:00.000Z",
            "2026-01-16T09:00:00.000Z",
            "2026-01-19T09:00:00.000Z",
            "2026-01-21T09:00:00.000Z",
            "2026-01-23T09:00:00.000Z",
            "2026-01-26T09:00:00.000Z"
        ]
    },
    "meta": {
        "timestamp": "2026-06-03T09:24:59.094Z",
        "request_id": "bd815b7e-2beb-4bd9-a594-5f163d06aec9"
    },
    "status": "ok",
    "message": "Expand a recurrence rule",
    "success": true
}