# RemittancePulse Corridor Intelligence

> RemittancePulse Corridor Intelligence is a paid API for AI agents from remittancepulse.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns best providers, fees, exchange rates, and receive options for a specific remittance send-receive corridor

## Facts

- Endpoint: GET https://remittancepulse.vercel.app/api/remit/corridor
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/remittancepulse-corridor-intelligence-9b93799a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j3e8bWu-5CMW3GXDbY1w_

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 remittancepulse-corridor-intelligence-9b93799a
```

Example prompt: What are the best remittance providers, fees, and exchange rates for sending USD from the United States to the Philippines in PHP — I want to see all available receive options like bank deposit and cash pickup too.

## When to prefer this

Use this endpoint when you need a comprehensive overview of all providers, fees, rates, and receive options for a specific send-to-receive country pair. Prefer this over the provider-comparison or FX-rate endpoints when the agent needs a single corridor-level intelligence summary rather than a deep dive on one provider or a pure rate lookup.

## Known failure modes

- Unsupported corridor returns empty results or 404 — corridor may not have indexed providers
- Invalid or unrecognized country/currency codes return validation error
- Payment required (402) if x402 payment header is missing or invalid
- Rate-limited responses if too many calls made in quick succession
- Stale data if providers have recently changed fees or availability

## How this service works

Best way to send money on a corridor: best providers, transfer fees, exchange rates, and receive options for any send-receive country pair. Cheapest remittance route plus FX-rate environment (carry/funding context) for any from/to corridor and amount. Worldwide corridors.

## Output

A ranked list of remittance providers for the requested corridor, including transfer fees, exchange rates, markup over mid-market rate, and available receive methods (bank transfer, mobile money, cash pickup, etc.) for the destination country.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "from"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "Receiving country — e.g. Philippines, India, Mexico, Nigeria, Bangladesh"
  },
  "from": {
   "type": "string",
   "description": "Sending country — e.g. USA, UAE, UK, Canada, Germany"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "amount": {
   "type": "string",
   "description": "Amount to send in source currency"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-corridor-intelligence-9b93799a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from remittancepulse.vercel.app](https://www.zero.xyz/host/remittancepulse.vercel.app/llms.txt)
