# FreightGate CFS Handling Tariffs API

> FreightGate CFS Handling Tariffs API is a paid API for AI agents from api.shippingrates.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns Container Freight Station (CFS) handling tariffs at a specified port, filterable by service type and cargo type

## Facts

- Endpoint: POST https://api.shippingrates.org/api/cfs
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freightgate-cfs-handling-tariffs-api-a42fd507
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L-JevnSvV9YZD1nTFYJL7

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-cfs-handling-tariffs-api-a42fd507 -d '<json body>'
```

Example prompt: What are the CFS handling tariffs at Chennai port (INMAA) for import of general cargo?

## When to prefer this

Use this endpoint when you need CFS handling tariff data for a specific port — particularly useful for Indian ports (INMAA, INMUN, etc.) — and want to filter by import/export service type or cargo type (general vs hazardous). Prefer this over the port local charges endpoint when specifically looking for CFS station handling fees rather than THC or documentation fees.

## Known failure modes

- Invalid or unrecognized UN/LOCODE port code returns an error or empty result
- Unsupported service type filter returns no matching tariffs
- Unsupported cargo type returns no matching tariffs
- Port has no CFS data available returns empty or null response
- Payment failure (x402) if USDC balance is insufficient

## How this service works

CFS handling tariffs at port

## Output

A structured response containing CFS (Container Freight Station) handling tariff rates at the requested port, filtered by service type (import/export) and cargo type (general/hazardous). Includes applicable charges and fee schedules for the CFS at that port.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "port": {
   "type": "string",
   "description": "UN/LOCODE port code (e.g. INMAA, INMUN)"
  },
  "service": {
   "type": "string",
   "description": "Filter by service type (e.g. import, export)"
  },
  "cargo_type": {
   "type": "string",
   "description": "Filter by cargo type (e.g. general, hazardous)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freightgate-cfs-handling-tariffs-api-a42fd507/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)
