# Scottish Highlands Hiking Trail Data

**Use case:** 

Access detailed hiking trail data from the Scottish Highlands. Get routes based on difficulty, length, and specific locations.

## Input

```json
{
  "mode": "location",
  "location": "Scottish Highlands, UK",
  "lat": null,
  "lng": null,
  "tourIds": [],
  "sport": "hike",
  "maxDistance": 100000,
  "difficulty": "difficult",
  "maxResults": 100
}
```

## 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.