Developer resources
Written for the engineer who has to maintain it.
REST with idempotency keys, signed webhooks, versioned endpoints, and a sandbox that mirrors production semantics — including failure modes, scheme rejections, and settlement delays you can trigger on demand.
API reference
Every endpoint, field, and error code
Sandbox keys
Deterministic test corridors and cards
SDKs
Node, Python, Go, PHP
Webhook replay
Re-deliver any event for 30 days
POST /v1/payouts
curl -X POST https://api.monetaire.io/v1/payouts \
-H "Authorization: Bearer $MONETAIRE_KEY" \
-H "Idempotency-Key: pyt_9f21c" \
-d '{
"source": { "iban_id": "ibn_84kd21", "currency": "USD" },
"destination": { "scheme": "SEPA_INSTANT", "iban": "DE89..." },
"amount": 48250.00,
"target_currency": "EUR",
"quote_id": "qte_7b3ac912"
}'
// 201 Created
{ "id": "pyt_9f21c", "state": "executing",
"fx_rate": 0.91840, "spread_bps": 12,
"expected_settlement": "2025-04-11T14:02:00Z" }