/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/mobilizon-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mobilizon-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mobilizon-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "Mobilizon public GraphQL API (live)",
"service": "mobilizon-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/event": "One event in full with description (uuid=…).",
"GET /v1/events": "Search public events by keyword (q=climate, limit up to 50).",
"GET /v1/groups": "Search organising groups (q=climate): name, handle, members."
},
"description": "Live data for Mobilizon, the federated events platform (open ActivityPub alternative to Meetup/Eventbrite/Facebook Events): search upcoming public events by keyword (title, time, place or online, organiser, attendee count, tags, link); fetch one event in full with its description; and search the organising groups (name, handle, domain, summary, member count). Reads the flagship mobilizon.fr instance. Live, no key, nothing stored. Distinct from corporate-events and centralised-platform APIs — this is federated grassroots events.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:50.252Z",
"request_id": "42f0689b-cb5e-4e81-83ec-e446d9152458"
},
"status": "ok",
"message": "Meta",
"success": true
}