# RemittancePulse FX Rate Intelligence

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

Returns mid-market FX rate alongside provider markup analysis and real cost breakdown for international remittance corridors

## Facts

- Endpoint: GET https://remittancepulse.vercel.app/api/remit/rate
- 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/remittancepulse-fx-rate-intelligence-1c61fb0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7jeRX8dHbyT2cziHzGdMw

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-fx-rate-intelligence-1c61fb0a
```

Example prompt: What's the mid-market FX rate for sending USD to MXN right now, and how much markup are typical remittance providers adding on top of it?

## When to prefer this

Use this endpoint when you need to analyze the true cost of international money transfers, compare provider markups against mid-market rates, or help users understand hidden FX fees in remittance corridors. Prefer this over generic FX rate APIs when the use case specifically involves remittance cost transparency and provider markup analysis.

## Known failure modes

- Unsupported currency pair returns error or empty result
- Rate data temporarily unavailable due to upstream FX feed outage
- Invalid currency code causes 400 bad request
- Payment required (402) if x402 micropayment not included

## How this service works

Best exchange rate and FX margin for money transfers: live mid-market rate vs provider markups for real-cost analysis. What recipient actually gets, how much currency-conversion markup providers charge, and exact converted amount for any currency pair. Live ECB mid-market rate plus rate environment. Worldwide currencies.

## Output

Returns the current mid-market exchange rate for a currency pair, the markup or spread applied by remittance providers, and a real cost analysis showing the true cost of sending money versus the interbank benchmark rate.

## Example request

```json
{
 "amount": "100",
 "to_currency": "PHP",
 "from_currency": "USD"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to_currency",
  "from_currency"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "amount": {
   "type": "string",
   "description": "amount"
  },
  "to_currency": {
   "type": "string",
   "description": "e.g. PHP, INR, MXN, NGN — also accepts 'to'"
  },
  "from_currency": {
   "type": "string",
   "description": "e.g. USD, GBP, EUR, AED — also accepts 'from'"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-fx-rate-intelligence-1c61fb0a/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)
