/v1/events
Search public events
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/mobilizon-api/v1/events" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mobilizon-api/v1/events", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mobilizon-api/v1/events");
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/events",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 10,
"query": "climate",
"total": 10,
"events": [
{
"url": "https://mobilizon.fr/events/a8f86c6e-7789-40dc-828f-acc1a0dce1ce",
"tags": [
"climat",
"écologie",
"environnement",
"éducation",
"carbone",
"orléans",
"gratuit"
],
"uuid": "a8f86c6e-7789-40dc-828f-acc1a0dce1ce",
"title": "La Fresque du Climat à Orléans",
"online": false,
"ends_on": "2026-07-04T11:00:00Z",
"location": {
"region": "Loiret",
"country": "France",
"locality": "Orléans",
"description": "Muséum d'Orléans pour la Biodiversité et l'Environnement"
},
"begins_on": "2026-07-04T08:00:00Z",
"organizer": null,
"participants": 0
},
{
"url": "https://mobilizon.fr/events/987e600c-45cc-4f84-940b-a11fce81969e",
"tags": [
"Climat"
],
"uuid": "987e600c-45cc-4f84-940b-a11fce81969e",
"title": "[email protected],offre de prêt entre particulier sérieux et honnête en 48H",
"online": false,
"ends_on": "2027-10-31T22:00:00Z",
"location": {
"region": "Bouches-du-Rhône",
"country": "France",
"locality": "Marseille",
"description": "Le boulevard des Dames"
},
"begins_on": "2026-01-10T17:00:00Z",
"organizer": {
"name": "Sabine LECLERCQ",
"handle": "sabine_leclercq"
},
"participants": 0
},
{
"url": "https://mobilizon.fr/events/1c6936bc-68de-41dd-abd9-1e6129bb903a",
"tags": [
"climat",
"environnement",
"écologie",
"numérique",
"éducation",
"orléans"
],
"uuid": "1c6936bc-68de-41dd-abd9-1e6129bb903a",
"title": "Atelier La Fresque de l'Alimentation",
"online": false,
"ends_on": "2026-06-20T11:15:00Z",
"location": {
"region": "Loiret",
"country": "France",
"locality": "Orléans",
"description": "Muséum d'Orléans pour la Biodiversité et l'Environnement"
},
"begins_on": "2026-06-20T08:00:00Z",
"organizer": null,
"participants": 0
},
{
…