Payouts
Crypto to Crypto Payout

Create Payout in Crypto

This endpoint creates a crypto payout transaction, allowing the user to send cryptocurrency to another wallet or address.

Endpoint

POST {{baseURL}}/v1/ramp/payout


Headers

HeaderValueRequired
x-api-keyYOUR_API_KEYYes

Request Body

 
{
    "recipient": {
        "symbol": "POL",
        "blockchain": "ETH", 
        "address": "<id>",
        "alias": ""
    },
    "quoteId": "<quoteId>",
    "reason": "",
    "remark": ""
}

Response

{
  "message": "transaction created successfully",
  "status": "success",
  "data": {
    "id": "bc1ac02d-2b9c-435f-9b7a-xxxxxxxxxxxxx",
    "referenceNumber": "XYORKSXAXXXXX",
    "state": "PENDING",
    "created": "2023-05-05T13:21:54.197217",
    "processed": "2023-05-05T13:21:54.197217"
  }
}
Status CodeMessage
400Bad request – invalid or missing fields
401Unauthorized – invalid API key or token
500Internal server error