# RemittancePulse Compliance & KYC Lookup

> RemittancePulse Compliance & KYC Lookup is a paid API for AI agents from remittancepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns remittance compliance rules, KYC/AML requirements, send limits, reporting thresholds, and corridor-specific restrictions for a given from/to country pair and transfer amount.

## Facts

- Endpoint: GET https://remittancepulse.theaslangroupllc.com/api/remit/compliance
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/remittancepulse-compliance-kyc-lookup-c11e7ab7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eVgTBNEV3MAVdzYvNO9dB

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-compliance-kyc-lookup-c11e7ab7
```

Example prompt: What are the KYC requirements, send limits, and AML reporting thresholds for transferring $4,000 from the United States to the Philippines — what ID and documentation would I need?

## When to prefer this

Use this endpoint when an agent needs to determine the legal and regulatory compliance requirements for a specific international money transfer corridor — particularly KYC documentation, AML thresholds, and send limits — before advising a user or automating a transfer workflow. Prefer this over general web search when structured, per-corridor compliance data is needed programmatically.

## Known failure modes

- Unsupported country corridor returns an error or empty result
- Ambiguous or missing country codes result in a 400 bad request
- Amount not specified may return generic rather than threshold-specific rules
- Data may be outdated if regulations changed recently — service notes it is not legal advice
- Rate limit or payment failure (x402) if USDC payment is not properly attached

## How this service works

Remittance compliance, KYC requirements, money transfer send limits, AML rules, and corridor restrictions. How much money can I send abroad legally, ID and documentation needed, reporting thresholds, and corridor-specific limits for any from/to country and amount. Worldwide. Not legal advice.

## Output

A structured response containing: KYC/identity documentation requirements for the specified corridor, maximum send limits (daily, monthly, or per-transaction), AML rules and reporting thresholds (e.g. CTR/SAR triggers), corridor-specific restrictions or bans, and any special compliance conditions applicable to the from/to country pair and amount.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "from"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "to"
  },
  "from": {
   "type": "string",
   "description": "from"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "amount": {
   "type": "string",
   "description": "amount"
  },
  "purpose": {
   "type": "string",
   "description": "purpose"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-compliance-kyc-lookup-c11e7ab7/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)
