# RemittancePulse Corridor Finder

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

Returns the best remittance providers, transfer fees, exchange rates, and receive options for any send-to-receive country corridor and amount.

## Facts

- Endpoint: GET https://remittancepulse.theaslangroupllc.com/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-finder-136ba5d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EJFGXMmY1CI-NXtkJZc9H

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-finder-136ba5d9
```

Example prompt: What are the cheapest providers and best exchange rates for sending $500 from the US to the Philippines right now — including transfer fees, FX margins, and how the recipient can receive the money?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-provider comparison for a specific remittance corridor including fees, live exchange rates, and receive options in a single call. Prefer it over generic FX rate endpoints when the user specifically wants to send money internationally and needs actionable provider recommendations with cost breakdowns.

## Known failure modes

- Unsupported corridor — send/receive country pair not covered returns empty or error
- Invalid country code — malformed ISO country code returns 400 error
- Amount out of range — very large or zero amounts may return no results
- Rate data unavailable — temporary data feed outage returns stale or error response
- Missing required parameters — omitting send or receive country returns 400 validation error

## 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 specified corridor, including transfer fees, exchange rate markups vs mid-market, total cost comparison, supported receive options (bank transfer, cash pickup, mobile money, etc.), and FX carry/funding context for the currency pair.

## 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-finder-136ba5d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from remittancepulse.theaslangroupllc.com](https://www.zero.xyz/host/remittancepulse.theaslangroupllc.com/llms.txt)
