Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.remlo.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Facilitates an instantaneous conversion and transfer of an employee’s on-chain stablecoin balance to their linked localized bank account using the Bridge API. Endpoint POST /api/mpp/bridge/offramp Pricing $0.25 per call — Covers internal accounting orchestration, KYC verification overhead, and the bridge processing execution. Payment type Single charge — Triggers a one-off fiat settlement transaction. Request
{
  "employeeWallet": "0xEmployeeWallet1",
  "amount": "1500000000000000000000",
  "currency": "USD",
  "destinationBankId": "ba_123456789"
}
Response
{
  "success": true,
  "bridgeTransferId": "tr_987654321",
  "fiatAmount": "1500.00",
  "estimatedSettlement": "2026-03-27T09:00:00Z"
}
Example
npx agentcash post https://remlo.xyz/api/mpp/bridge/offramp '{"employeeWallet":"0x...","amount":"150...","destinationBankId":"ba_123"}'
Notes Failure states usually trigger if the destination bank rejects the payload or the specific country corridor is temporarily paused for liquidity constraints via Bridge.

Authorization

Caller must be the employer that owns the employee being off-ramped. Accepts:
  • Privy bearer token — employer owner.
  • Tier 1 agent — registered HMAC headers.
  • Tier 2 agent — registered ERC-8004 identity headers.
Cross-employer off-ramp is blocked: request is 403 if the employee’s employer_id doesn’t match the proven principal. See Authentication.