find-nearby-routes
Find saved Strava routes starting within a specified distance of any location. Provide latitude, longitude, and optional max distance to discover nearby runs or rides.
Instructions
Returns the athlete's saved routes that start within a given distance of a location. Use when the user asks for routes near a place, nearby routes, or routes in a specific area. Provide latitude and longitude of the target location and a max distance in km.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | Latitude of the center point to search from. Example: 41.0082 (Istanbul), 48.8566 (Paris). | |
| longitude | Yes | Longitude of the center point to search from. Example: 28.9784 (Istanbul), 2.3522 (Paris). | |
| activityType | No | Filter by activity type: 'ride' (type=1) or 'run' (type=2). Omit to return all types. | |
| maxDistanceKm | No | Maximum distance in kilometers from the center point to the route start. Default: 10 km. |