# Foot (walking) OSRM Driving Routes & Directions

**Use case:** 

Extract OSRM Driving Routes & Directions data filtered by Foot (walking). Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "routes": [
    {
      "startLat": 37.7749,
      "startLon": -122.4194,
      "endLat": 34.0522,
      "endLon": -118.2437
    },
    {
      "startLat": 51.5074,
      "startLon": -0.1278,
      "endLat": 48.8566,
      "endLon": 2.3522
    }
  ],
  "profile": "foot",
  "alternatives": false,
  "steps": true,
  "annotations": false,
  "overview": "simplified",
  "maxItems": 10
}
```

## Output

```json
{
  "label": {
    "label": "🏷️ Label",
    "format": "text"
  },
  "profile": {
    "label": "🚗 Profile",
    "format": "text"
  },
  "startLatitude": {
    "label": "📍 Start Latitude",
    "format": "number"
  },
  "startLongitude": {
    "label": "📍 Start Longitude",
    "format": "number"
  },
  "endLatitude": {
    "label": "📍 End Latitude",
    "format": "number"
  },
  "endLongitude": {
    "label": "📍 End Longitude",
    "format": "number"
  },
  "routeIndex": {
    "label": "🔢 Route Index",
    "format": "number"
  },
  "distanceMeters": {
    "label": "📏 Distance (m)",
    "format": "number"
  },
  "durationSeconds": {
    "label": "🕒 Duration (s)",
    "format": "number"
  },
  "distanceKilometers": {
    "label": "📏 Distance (km)",
    "format": "number"
  },
  "durationMinutes": {
    "label": "🕒 Duration (min)",
    "format": "number"
  },
  "weight": {
    "label": "📊 Weight",
    "format": "number"
  },
  "weightName": {
    "label": "🏷️ Weight Name",
    "format": "text"
  },
  "geometry": {
    "label": "📐 Geometry",
    "format": "object"
  },
  "legs": {
    "label": "📦 Legs",
    "format": "array"
  },
  "waypoints": {
    "label": "📍 Waypoints",
    "format": "array"
  },
  "snapshotTime": {
    "label": "🕒 Snapshot Time",
    "format": "date"
  },
  "snapDistanceWarning": {
    "label": "⚠️ Snap Distance Warning",
    "format": "boolean"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OSRM Driving Routes & Directions Scraper](https://apify.com/parseforge/osrm-routing-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/osrm-routing-scraper) to learn more, explore other use cases, and run it yourself.