# RemittancePulse Receive-Country Guide

> RemittancePulse Receive-Country Guide 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 available receive-side remittance options at a destination country, including mobile money, cash pickup, bank transfer, and local platform details.

## Facts

- Endpoint: GET https://remittancepulse.vercel.app/api/remit/receive
- 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-receive-country-guide-062353ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_71Lnw3z_HE0Hwo8LwZOfe

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-receive-country-guide-062353ab
```

Example prompt: What are all the ways my family in the Philippines can receive the money I'm sending — does RemittancePulse show mobile money wallets like GCash, cash pickup spots, and bank transfer options available at the destination?

## When to prefer this

Use this endpoint when you need to inform a sender about what receive-side options their recipient has at the destination — specifically the menu of methods (mobile money, cash, bank, local platforms) available in that country. Prefer this over corridor or provider comparison endpoints when the goal is understanding recipient-side capability rather than comparing fees or exchange rates.

## Known failure modes

- Unsupported destination country returns empty or error response
- Invalid country code returns 400 bad request
- Data may be stale if provider landscape has recently changed
- Service unavailable returns 5xx error
- Missing required country parameter returns validation error

## How this service works

How to receive money in a country: mobile money, cash pickup, bank transfer, and local-platform options at the destination. Best way to collect a remittance, which banks and cash-pickup networks and mobile wallets actually operate there, by destination country and receive method. Worldwide.

## Output

A structured list of receive-side options at the destination country, categorized by method type: mobile money (e.g. M-Pesa, GCash, bKash), cash pickup networks, bank transfer availability, and other local platforms — including relevant details about each option.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "country"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "method": {
   "type": "string",
   "description": "bank | cash | mobile | wallet — or omit for all methods"
  },
  "country": {
   "type": "string",
   "description": "country"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-receive-country-guide-062353ab/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)
