# RemittancePulse Provider Comparison

> RemittancePulse Provider Comparison is a paid API for AI agents from remittancepulse.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Compares remittance providers (Wise, Western Union, Remitly, and more) with total-cost analysis including hidden exchange-rate markups for a given send corridor.

## Facts

- Endpoint: GET https://remittancepulse.vercel.app/api/remit/compare
- 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/remittancepulse-provider-comparison-7cf3ab30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gQWGH0IUb00caPYQLGfJi

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-provider-comparison-7cf3ab30
```

Example prompt: Compare all remittance providers for sending $500 USD to the Philippines in PHP — I want to see the total cost including exchange rate markup, not just the transfer fee, so I know which one actually gives the best deal.

## When to prefer this

Use this endpoint when an agent needs to help a user select the optimal remittance provider for a specific send corridor, especially when transparency around hidden exchange-rate markups is important. Prefer this over generic FX rate lookups when the user wants an apples-to-apples comparison across named providers including fees plus spread. Best for migrant worker finance use cases, remittance advisory agents, or cost-optimization workflows.

## Known failure modes

- Unsupported corridor — send/receive country pair not covered, returns error or empty results
- Invalid currency codes — unrecognized ISO currency codes return validation error
- Provider data unavailable — live rate feeds temporarily down for one or more providers, partial results returned
- Missing required parameters — send amount or currency not specified, returns 400-style error
- Rate staleness — exchange rates may be cached and not reflect real-time market conditions

## How this service works

Compare money transfer providers, remittance fees, and send-money-abroad cost. Cheapest way to send money overseas: total-cost ranking including hidden exchange-rate markup across Wise, Western Union, Remitly, and more. Shows exactly how much the recipient gets per provider for any from/to country and amount. Worldwide corridors.

## Output

A ranked list of remittance providers (Wise, Western Union, Remitly, and others) for the requested corridor, showing transfer fees, exchange rates, mid-market rate comparison, exchange-rate markup in percentage or dollar terms, net amount received by recipient, and total cost analysis to reveal which provider is truly cheapest after all hidden costs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "from"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "to"
  },
  "from": {
   "type": "string",
   "description": "from"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "amount": {
   "type": "string",
   "description": "Amount to send (default: 500)"
  },
  "to_currency": {
   "type": "string",
   "description": "e.g. PHP, INR, MXN, NGN, PKR"
  },
  "from_currency": {
   "type": "string",
   "description": "e.g. USD, GBP, EUR, AED, CAD"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-provider-comparison-7cf3ab30/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)
