curl --request GET \
--url https://api.lumx.io/partner-fees \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174004",
"name": "Fee name",
"walletAddress": "0x76b74209f3542d172ca1575b5b18064594360299",
"fees": {
"onRamp": {
"rate": "10",
"flatAmount": "1"
},
"offRamp": {
"rate": "10",
"flatAmount": "1"
}
},
"isDefault": false,
"createdAt": "2021-01-01T00:00:00Z"
}
]
}This endpoint reads all partner fees.
curl --request GET \
--url https://api.lumx.io/partner-fees \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174004",
"name": "Fee name",
"walletAddress": "0x76b74209f3542d172ca1575b5b18064594360299",
"fees": {
"onRamp": {
"rate": "10",
"flatAmount": "1"
},
"offRamp": {
"rate": "10",
"flatAmount": "1"
}
},
"isDefault": false,
"createdAt": "2021-01-01T00:00:00Z"
}
]
}Bearer authentication header on the format Bearer <API_KEY>.
Partner fees successfully retrieved.
An array containing all partner fees.
Show child attributes
Partner fee's unique identifier.
"123e4567-e89b-12d3-a456-426614174004"
Partner fee's name.
"Fee name"
Partner's wallet address that will receive the funds.
"0x76b74209f3542d172ca1575b5b18064594360299"
Partner fee's fees.
Show child attributes
Whether this partner fee is the default one.
false
Creation date and time (UTC).
"2021-01-01T00:00:00Z"