Endpoint Playground
Test Crawlora's Strava routes API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/strava/routes?sport=hiking&country=<country>®ion=<region>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | hiking | Route sport. Allowed values: hiking, road-biking, mountain-biking, trail-running, gravel-biking |
| country | string | Yes | Country slug, e.g. usa | |
| region | string | Yes | Region slug: a state (colorado) or state/city (colorado/boulder) | |
| page | integer | No | Page number, starting at 1 |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "hiking",
"country": "usa",
"region": "colorado",
"title": "Top 318 hiking trails in Colorado",
"page": 1,
"total_pages": 16,
"total_results": 318,
"source_url": "https://www.strava.com/routes/hiking/usa/colorado",
"routes": [
{
"rank": 1,
"name": "Mallory Cave via N.C.A.R. Trail",
"path": "hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"difficulty": "Easy",
"distance_raw": "1.46 mi",
"elevation_gain_raw": "345 ft",
"description": "The Mallory Cave hike takes you to the mouth of a beautiful cave...",
"image_url": "https://dgtzuqphqg23d.cloudfront.net/8UruePMrrrQMdHGsELroGsOsTMWqh030g7159PMSue4-768x576.jpg"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a page of Strava's public route recommendations for a sport, country, and region (state, or state/city). `sport` values: `hiking`, `road-biking`, `mountain-biking`, `trail-running`, `gravel-biking`. Public data, sourced from Strava's own server-rendered route pages.
{
"code": 200,
"msg": "OK",
"data": {
"sport": "hiking",
"country": "usa",
"region": "colorado",
"title": "Top 318 hiking trails in Colorado",
"page": 1,
"total_pages": 16,
"total_results": 318,
"source_url": "https://www.strava.com/routes/hiking/usa/colorado",
"routes": [
{
"rank": 1,
"name": "Mallory Cave via N.C.A.R. Trail",
"path": "hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"difficulty": "Easy",
"distance_raw": "1.46 mi",
"elevation_gain_raw": "345 ft",
"description": "The Mallory Cave hike takes you to the mouth of a beautiful cave...",
"image_url": "https://dgtzuqphqg23d.cloudfront.net/8UruePMrrrQMdHGsELroGsOsTMWqh030g7159PMSue4-768x576.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/strava/routes?sport=<sport>&country=<country>®ion=<region>" \
-H "x-api-key: $CRAWLORA_API_KEY"