GET
/
rewards
/
{currency}
/
customer
/
{customerID}
/
history
Get a history of a customer's rewards
curl --request GET \
  --url https://api.bridge.xyz/v0/rewards/{currency}/customer/{customerID}/history \
  --header 'Api-Key: <api-key>'
{
"customer_id": "02513e85-b0f9-4d79-8320-348ce9efaa11",
"rewards": [
{
"balance": "10000.00",
"amount": "0.958904",
"currency": "xusd",
"date": "2025-01-02"
},
{
"balance": "10100.00",
"amount": "0.968493",
"currency": "xusd",
"date": "2025-01-01"
}
]
}

Authorizations

Api-Key
string
header
required

Path Parameters

currency
string
required

The stablecoin symbol

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

The history of a customer's rewards

The response is of type object.