GET
/
payouts
/
{payout_id}
curl --request GET \
  --url https://api.sandbox.sardine.ai/v1/payouts/{payout_id} \
  --header 'Authorization: Basic <encoded-value>'
{
"orderId": "a9a54943-468a-4e0c-9d3d-84b7dbc663f0",
"total": 20,
"payouts": [
{
"id": "7fea91c2-a491-49fb-9312-d372f4334ce1",
"orderId": "a9a54943-468a-4e0c-9d3d-84b7dbc663f0",
"status": "FUNDED",
"payoutType": "CRYPTO",
"receipt": {
"walletAddress": "0x...",
"assetSymbol": "USDC",
"assetAmount": 15,
"network": "polygon",
"txHash": null
}
},
{
"id": "887d8f92-f129-4ecb-b909-0e12aff70e74",
"status": "FUNDED",
"payoutType": "CRYPTO",
"orderId": "a9a54943-468a-4e0c-9d3d-84b7dbc663f0",
"receipt": {
"walletAddress": "0x...",
"assetSymbol": "USDC",
"assetAmount": 5,
"network": "polygon",
"txHash": null
}
}
]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

payout_id
string
required

Payout ID associated with a specific payout

Query Parameters

order_id
string

Order ID associated with the payout

Response

200 - application/json

OK

The response is of type object.