# FreightGate Inland Transport Route Search

> FreightGate Inland Transport Route Search is a paid API for AI agents from api.shippingrates.org, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search inland transport routes by shipping line, country, and city/region keyword to discover available haulage options

## Facts

- Endpoint: POST https://api.shippingrates.org/api/inland-search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freightgate-inland-transport-route-search-f9377e21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XpTyI58iOHPviAyXaDX6U

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 freightgate-inland-transport-route-search-f9377e21 -d '<json body>'
```

Example prompt: Search FreightGate for inland transport routes in Germany for Maersk — look up routes near Hamburg and show me what haulage options are available.

## When to prefer this

Use this endpoint when you need to discover which inland transport routes or haulage corridors a specific shipping line operates within a given country, especially when searching by city or regional keyword. Prefer this over the inland haulage rates endpoint when the goal is route discovery rather than pricing.

## Known failure modes

- Invalid or unrecognized shipping line slug returns no results or error
- Unsupported ISO country code returns validation error
- Keyword too generic or misspelled returns empty result set
- Missing required fields returns 400 bad request
- Payment failure via x402 protocol returns 402 Payment Required

## How this service works

Search inland transport routes

## Output

A list of inland transport routes matching the shipping line, country, and keyword criteria, including cities, regions, or route identifiers covered by the specified carrier in that geography.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "line": {
   "type": "string",
   "description": "Shipping line slug"
  },
  "country": {
   "type": "string",
   "description": "ISO 2-letter country code"
  },
  "keyword": {
   "type": "string",
   "description": "City, region, or route search term"
  },
  "icd_code": {
   "type": "string",
   "description": "Destination ICD UN/LOCODE filter"
  },
  "cargo_class": {
   "enum": [
    "general",
    "DG"
   ],
   "type": "string",
   "description": "Cargo class filter (default: general)"
  },
  "delivery_mode": {
   "enum": [
    "ramp",
    "door"
   ],
   "type": "string",
   "description": "Delivery mode filter (default: ramp)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freightgate-inland-transport-route-search-f9377e21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.shippingrates.org](https://www.zero.xyz/host/api.shippingrates.org/llms.txt)
