/v1/expand
Expand a recurrence rule
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}