Aller au contenu
GET /v1/event

One event in full

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/mobilizon-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/mobilizon-api/v1/event" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mobilizon-api/v1/event", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mobilizon-api/v1/event");
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/mobilizon-api/v1/event",
    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": {
        "url": "https://mobilizon.fr/events/616dd97d-fb62-4300-bb97-222ca3848b1c",
        "tags": [],
        "uuid": "616dd97d-fb62-4300-bb97-222ca3848b1c",
        "title": "Rencontres Musicales Européennes",
        "online": false,
        "ends_on": "2026-08-08T22:00:00Z",
        "location": {
            "region": null,
            "country": null,
            "locality": null,
            "description": null
        },
        "begins_on": "2026-08-08T19:00:00Z",
        "organizer": null,
        "description": null,
        "participants": 0
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:49.703Z",
        "request_id": "bbd91025-d8fb-4493-9e36-70dadcc1eaf9"
    },
    "status": "ok",
    "message": "Event retrieved successfully",
    "success": true
}