Send stablecoin transfers to crypto addresses with support for multiple chains
General Limits
POST /payouts
{ "amount": 100000, "beneficiary_id": "5d906f6d-933b-4de9-927f-c7522823f5ec", "beneficiary_type": "crypto_address", "description": "Payment for services", "destination_currency": "USDT", "pin": "123456", "reference": "juice-payout-5d906f6d-933b-4de9-927f-c7522823f5ec", "source_currency": "USD" }
{ "data": { "beneficiary": { "chain": "TRX", "address": "TRDFGhjkytywooiueonuoo", "id": "d8c0226b-048c-4c44-9606-a93333f56283", "type": "crypto_address" }, "beneficiary_type": "crypto_address", "created_at": "2024-03-01T02:29:49Z", "destination_amount": 100000, "destination_currency": "USDT", "id": "93cf071e-d773-11ee-bf78-c6d49632367b", "source_amount": 100000, "source_currency": "USD", "status": "pending", "updated_at": "2024-03-01T02:29:53Z" } }
400 - Invalid Request
{ "error": { "code": "invalid_request", "message": "Invalid parameters provided", "details": { "amount": ["Amount must be at least 1000"] } } }
401 - Unauthorized
{ "error": { "code": "invalid_pin", "message": "Invalid authorization PIN provided" } }
422 - Validation Error
{ "error": { "code": "validation_error", "message": "The request contains invalid parameters", "details": { "destination_currency": ["Must be one of: USDT, USDC"] } } }
429 - Rate Limited
{ "error": { "code": "rate_limit_exceeded", "message": "Too many requests. Please try again in 60 seconds." } }