Researches a destination and returns one ready JSON plan from free, no-key sourc
Researches a destination and returns one ready JSON plan from free, no-key sources: the geocoded place, up to 16 days of weather, the driving route and distance from your origin, and what is around (hotels, food, transport, ATMs, payment spots, crypto). Call it when you need current ground truth about somewhere you are about to travel, instead of guessing. Sources: OpenStreetMap, Overpass, Open-Meteo and OSRM. Rule-based, no LLM.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
673 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://fachada.chelsea-hermes.workers.dev/trip/v1/plan
| Category | Market data |
|---|---|
| Provider host | fachada.chelsea-hermes.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 673 ms |
Example input (from the provider)
{
"description": "destino: destination as free text; a region or country helps disambiguate; dias: how many days of the plan you want (default 3); desde: optional start date YYYY-MM-DD, used for the weather window; origen: optional origin to compute the driving route and distance",
"method": "GET",
"queryParams": {
"destino": "Madikeri, India",
"dias": "3"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"type": "object"
}