# ForgeMesh Fare Intelligence

> ForgeMesh Fare Intelligence is a paid API for AI agents from travel.forgemesh.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Retrieves fare intelligence data for a single flight route, including pricing and availability information for a given origin-destination pair.

## Facts

- Endpoint: GET https://travel.forgemesh.io/api/fare-intelligence
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-fare-intelligence-148c6b0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CmuyCru57yrIrXjb6VGLg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability forgemesh-fare-intelligence-148c6b0f
```

Example prompt: Can you pull up ForgeMesh fare intelligence for a round trip from New York (JFK) to London (LHR), departing on June 15 and returning June 22, priced in USD for the US market?

## When to prefer this

Use this endpoint when you need fare pricing intelligence for a single specific route query, particularly when integrating travel cost data into an agent workflow or building a travel planning application that requires per-route fare lookups via the x402 micropayment protocol.

## Known failure modes

- Missing required origin or destination parameters returns a 400 error
- Invalid airport/city codes may return no results or an error
- Unsupported market or currency codes may cause query failure
- Payment not processed (x402 protocol failure) results in 402 response
- No fare data available for the route returns empty results
- Invalid date formats for departure_at or return_at cause request rejection

## How this service works

ForgeMesh fare intelligence for one route query.

## Output

Returns fare intelligence data for the specified route, including pricing information for the given origin, destination, departure date, return date, market, and currency parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "origin",
      "destination"
     ],
     "properties": {
      "market": {
       "type": "string"
      },
      "origin": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "return_at": {
       "type": "string"
      },
      "destination": {
       "type": "string"
      },
      "departure_at": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {}
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "price": 189,
    "origin": "JFK",
    "currency": "USD",
    "destination": "LAX",
    "recommendation": "buy_now"
   }
  ],
  "count": 1,
  "provider": "travel_search"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-fare-intelligence-148c6b0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travel.forgemesh.io](https://www.zero.xyz/host/travel.forgemesh.io/llms.txt)
