/v1/categories
Event count per Mobilizon category
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/mobilizon-api/v1/categories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mobilizon-api/v1/categories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mobilizon-api/v1/categories");
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/categories",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 25,
"categories": [
{
"label": "meeting",
"events": 31984,
"category": "MEETING"
},
{
"label": "music",
"events": 6595,
"category": "MUSIC"
},
{
"label": "networking",
"events": 2859,
"category": "NETWORKING"
},
{
"label": "arts",
"events": 2516,
"category": "ARTS"
},
{
"label": "movements politics",
"events": 2001,
"category": "MOVEMENTS_POLITICS"
},
{
"label": "science tech",
"events": 1768,
"category": "SCIENCE_TECH"
},
{
"label": "performing visual arts",
"events": 1341,
"category": "PERFORMING_VISUAL_ARTS"
},
{
"label": "theatre",
"events": 1227,
"category": "THEATRE"
},
{
"label": "spirituality religion beliefs",
"events": 1225,
"category": "SPIRITUALITY_RELIGION_BELIEFS"
},
{
"label": "sports",
"events": 1091,
"category": "SPORTS"
},
{
"label": "food drink",
"events": 972,
"category": "FOOD_DRINK"
},
{
"label": "learning",
"events": 769,
"category": "LEARNING"
},
{
"label": "family education",
"events": 722,
"category": "FAMILY_EDUCATION"
},
{
"label": "outdoors adventure",
"events": 718,
"category": "OUTDOORS_ADVENTURE"
},
{
"label": "crafts",
"events": 716,
"category": "CRAFTS"
},
{
"label": "language culture",
"events": 618,
"category": "LANGUAGE_CULTURE"
},
{
"label": "party",
"events": 617,
"category": "PARTY"
},
{
"label": "causes",
"events": 559,
"category": "CAUSES"
},
{
"label": "games",
"events": 411,
"category": "GAMES"
},
{
"label": "photography",
"events": 307,
"category": "PHOTOGRAPHY"
},
{
"label": "health",
"events": 206,
…