Zum Inhalt springen
GET /v1/event

One event in full

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/mobilizon-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}