Endpoint Playground
Test Crawlora's Strava route detail 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/detail?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Relative route path, from a /strava/routes result's path field |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Mallory Cave via N.C.A.R. Trail",
"route_type": "Hiking Trail",
"difficulty": "Easy",
"distance_raw": "1.46 mi",
"elevation_gain_raw": "345 ft",
"estimated_time_raw": "33:48",
"summary": "The Mallory Cave hike takes you to the mouth of a beautiful cave...",
"path": "hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"source_url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730"
}
}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 single Strava route's detail: type, difficulty, distance, elevation gain, estimated time, and summary. `path` is the relative route path returned by `/strava/routes` results (e.g. `hiking/usa/colorado/boulder/mallory-cave_5171952737974445730`). Public data, sourced from Strava's own server-rendered route pages.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Mallory Cave via N.C.A.R. Trail",
"route_type": "Hiking Trail",
"difficulty": "Easy",
"distance_raw": "1.46 mi",
"elevation_gain_raw": "345 ft",
"estimated_time_raw": "33:48",
"summary": "The Mallory Cave hike takes you to the mouth of a beautiful cave...",
"path": "hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730",
"source_url": "https://www.strava.com/routes/hiking/usa/colorado/boulder/mallory-cave_5171952737974445730"
}
}curl "https://api.crawlora.net/api/v1/strava/routes/detail?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"