Point-to-point directions between 2-10 stops by car, bike, or on foot: total and per-leg d
Point-to-point directions between 2-10 stops by car, bike, or on foot: total and per-leg distance and travel time, plus route geometry as an encoded polyline. Stops can be place names (geocoded automatically) or lat/lon coordinates. Generic travel and delivery routing on OpenStreetMap road data, global coverage. POST a JSON body like: {"stops":["paris","lyon"],"mode":"car"}
10000 (raw units)
price
4
calls / 30d
1
unique payers
2026-08-30
updated
Provider
keyronne.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"mode": "car",
"stops": [
"paris",
"lyon"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"attribution": "Geodata © OpenStreetMap contributors (ODbL)",
"distanceKm": 465.9,
"durationMinutes": 273.5,
"geometryPolyline": "<encoded polyline>",
"legs": [
{
"distanceKm": 465.9,
"durationMinutes": 273.5,
"from": 0,
"to": 1
}
],
"mode": "car",
"stops": [
{
"lat": 48.86,
"lon": 2.35,
"name": "paris"
},
{
"lat": 45.76,
"lon": 4.84,
"name": "lyon"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"mode": {
"default": "car",
"enum": [
"car",
"bike",
"foot"
],
"type": "string"
},
"stops": {
"description": "Places to visit in order: name strings or {lat, lon} objects.",
"items": {},
"maxItems": 10,
"minItems": 2,
"type": "array"
}
},
"required": [
"stops"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"type": "object"
},
"output": {
"properties": {
"attribution": {
"type": "string"
},
"distanceKm": {
"type": "number"
},
"durationMinutes": {
"type": "number"
},
"geometryPolyline": {
"type": "string"
},
"legs": {
"items": {
"properties": {
"distanceKm": {
"type": "number"
},
"durationMinutes": {
"type": "number"
},
"from": {
"type": "integer"
},
"to": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"mode": {
"type": "string"
},
"stops": {
"items": {
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"name": {
"type": "string"
},
"snappedName": {
"description": "Road the stop snapped to.",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://keyronne.com/api/route" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://keyronne.com/api/route");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://keyronne.com/api/route")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/816.json, and this resource appears in /discovery/resources and /discovery/search.