ForgeMesh fare intelligence for one route query
ForgeMesh fare intelligence for one route query.
100000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-02
updated
Provider
travel.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6B1aC7935DAD576b921af0E6EDC27319bc27AAdD",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"departure_at": "2026-08",
"destination": "LAX",
"origin": "JFK"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"data": [
{
"currency": "USD",
"destination": "LAX",
"origin": "JFK",
"price": 189,
"recommendation": "buy_now"
}
],
"provider": "travel_search"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"currency": {
"type": "string"
},
"departure_at": {
"type": "string"
},
"destination": {
"type": "string"
},
"market": {
"type": "string"
},
"origin": {
"type": "string"
},
"return_at": {
"type": "string"
}
},
"required": [
"origin",
"destination"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0x6B1aC7935DAD576b921af0E6EDC27319bc27AAdD",
"resourceUrl": "https://travel.forgemesh.io/api/fare-intelligence",
"scheme": "exact",
"validUntil": 1788373227,
"version": 1
},
"signature": "0x6203fd1c9cc83a7fb8765c31b793a8cadf862c9fd08d80f9261c08fb84fe3e93442d4be6fadfd4374e16443c33bcf7d6189d0cd4d96230607e953dbfa2e24a921c"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
}
}Use it
curl
curl "https://travel.forgemesh.io/api/fare-intelligence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://travel.forgemesh.io/api/fare-intelligence");
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://travel.forgemesh.io/api/fare-intelligence")
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/8919.json, and this resource appears in /discovery/resources and /discovery/search.