Listing payouts

GET /api/public/v1/payouts

This endpoint returns a list of payouts with pagination.

Headers

Query Parameters

Response Body

Response

{
  "data": [
    {
      "id": "dfa4b8dc-6b7c-481a-b486-71f6db5126fc",
      "type": "payouts",
      "attributes": {
        "address": "TTbGTMwUwA3mncLP7xqCZei1ekaNSgeAJe",
        "createdAt": "2024-07-30T15:35:40.253Z",
        "absorbFees": false,
        "reference": "44650aff-f7dd-49e5-ad59-01e667112a31",
        "status": "processing",
        "amount": "50.00",
        "currency": "USD",
        "payCurrency": "USDT",
        "payAmount": "45.020195",
        "payNetwork": "ttrx:usdt",
        "payNetworkName": "Tron (TRC20)",
        "txid": null,
        "networkFee": "4.000000",
        "networkFeeCurrency": "USDT",
        "payoutFee": "0.50",
        "payoutFeeCurrency": "USD",
        "exchangeRate": "1.0097879"
      }
    },
    {
      "id": "c03bc7ec-8cf8-449c-9ba5-660364970682",
      "type": "payouts",
      "attributes": {
        "address": "TTbGTMwUwA3mncLP7xqCZei1ekaNSgeAJe",
        "createdAt": "2024-07-30T15:32:15.287Z",
        "absorbFees": false,
        "reference": "e8fd9254-dba4-448e-a537-4a670d720855",
        "status": "completed",
        "amount": "50.00",
        "currency": "USD",
        "payCurrency": "TRX",
        "payAmount": "363.663665",
        "payNetwork": "ttrx",
        "payNetworkName": "Tron",
        "txid": "b4ad13397e401b1238b73f5e9d99d507504096f5638e1c72cd35568f61a7139b",
        "networkFee": "2.000000",
        "networkFeeCurrency": "TRX",
        "payoutFee": "0.50",
        "payoutFeeCurrency": "USD",
        "exchangeRate": "0.1353703"
      }
    }
  ],
  "meta": {
    "page": "1",
    "per_page": "2",
    "total": 20
  },
  "jsonapi": {
    "version": "1.0"
  }
}

Last updated