/v1/expand
Expand a recurrence rule
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}