Asdeporte Mexico Race & Event Scraper
SPORTSTRAVEL
Asdeporte Mexico Race & Event Scraper
Scrape upcoming race and endurance sport events from Asdeporte, the leading race registration platform in Mexico. Returns structured data for marathons, half-marathons, triathlons, cycling events, and more — including event name, date, location, modality, distances offered, registration price, organizer, and registration status.
What you get
Each record contains:
| Field | Description |
|---|---|
event_id |
Unique UUID from Asdeporte |
event_slug |
URL slug (e.g. maraton-guadalajara-2026-abc) |
event_name |
Official event name |
event_url |
Link to the event page |
event_date |
Start date/time (ISO 8601, UTC) |
event_modality |
Sport type (Carrera, Triatlón, Ciclismo, etc.) |
event_distances |
Comma-separated offered distances (e.g. 5km, 10km, 21km) |
host_venue |
Venue or landmark name |
host_city |
City |
host_state |
Mexican state or region |
host_country |
Country code (MX) |
registration_status |
Open/closed status (abierta, cerrada) |
registration_url |
Direct link to the inscription page |
registration_price_mxn |
Regular price in MXN |
registration_deadline |
Registration closing date/time |
cover_image |
Banner/cover image URL |
organizer_name |
Organizing entity |
sponsors |
Comma-separated sponsors |
results_url |
Link to event results page |
athlete_count |
Expected participant count |
Usage
Set Max Items to control how many events to return. Each run returns up to 57 upcoming events from Asdeporte's active listing.
Input
{
"maxItems": 10
}
Output sample
{
"event_id": "b7001401-9418-41c2-be37-936c8e3c1f3f",
"event_slug": "1er--carrera-5k-atletas-olimpicos-2026-z0o",
"event_name": "1er. Carrera 5k Atletas Olímpicos 2026",
"event_url": "https://www.asdeporte.com/evento/1er--carrera-5k-atletas-olimpicos-2026-z0o",
"event_date": "2026-06-28T14:00:00.000Z",
"event_modality": "Carrera",
"event_distances": "5km, infantil",
"host_venue": "Parque Ecoturístico Cuevecilla",
"host_city": "Parque Ecoturístico Cuevecilla",
"host_state": "Edo. Mex.",
"host_country": "MX",
"registration_status": "abierta",
"registration_url": "https://www.asdeporte.com/evento/.../inscripcion",
"registration_price_mxn": 350,
"registration_deadline": "2026-06-26T23:00:00.000Z",
"cover_image": "https://d3cnkhyiyh0ve2.cloudfront.net/...",
"organizer_name": "Innovasport Centros De Inscripción",
"sponsors": "",
"results_url": "https://www.asdeporte.com/evento/.../resultados",
"athlete_count": 1000
}
Use cases
- Race tourism — build Mexico running & triathlon travel calendars
- Sports marketing — track upcoming events for sponsorship activation
- Training apps — surface local events for Mexican athletes
- B2B data products — power race-aggregation platforms covering LATAM
Notes
- Returns events from Asdeporte's active recommended listing (up to 57 events per run).
- Data is extracted from server-side rendered pages — no JavaScript execution required.
- Historical event results are accessible via the
results_urlfield on each record.