/v1/expand
Expand a recurrence rule
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}