Naar de inhoud
GET /v1/event

One event in full

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/mobilizon-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

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