Aller au contenu
GET /v1/expand

Expand a recurrence rule

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/rrule-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}