# Patagonia Difficult Hiking Routes by Coordinates

**Use case:** 

Extract hiking routes in Patagonia with detailed data, including distance, elevation, and difficulty. Get up to 50 routes based on your specified coordinates.

## Input

```json
{
  "mode": "coords",
  "location": "Munich",
  "lat": -50.9423,
  "lng": -73.4068,
  "tourIds": [],
  "sport": "hike",
  "maxDistance": 150000,
  "difficulty": "difficult",
  "maxResults": 50
}
```

## Output

```json
{
  "tourId": {
    "label": "Tour ID",
    "format": "string"
  },
  "name": {
    "label": "Route name",
    "format": "string"
  },
  "sport": {
    "label": "Sport",
    "format": "string"
  },
  "distanceKm": {
    "label": "Distance (km)",
    "format": "number"
  },
  "durationMin": {
    "label": "Duration (min)",
    "format": "integer"
  },
  "elevationUp": {
    "label": "Elevation up (m)",
    "format": "integer"
  },
  "difficulty": {
    "label": "Difficulty",
    "format": "string"
  },
  "visitors": {
    "label": "Visitors",
    "format": "integer"
  },
  "ratingScore": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "# Ratings",
    "format": "integer"
  },
  "surfaces": {
    "label": "Surfaces",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Komoot Hiking & Outdoor Routes Scraper](https://apify.com/logiover/komoot-hiking-outdoor-routes-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/komoot-hiking-outdoor-routes-scraper) to learn more, explore other use cases, and run it yourself.