Read all transactions
This endpoint reads all transactions made with your API key.
curl --request GET \
--url https://api-sandbox.lumx.io/transactions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "on_ramp",
"request": {
"sourceCurrency": "BRL",
"targetCurrency": "USDC",
"amount": "100.99",
"payment": {
"rail": "pix"
}
},
"state": {
"status": "awaiting_funds",
"payment": {
"rail": "pix",
"brCode": "00020126580014br.gov.bcb.pix0136123e4567-e89b-12d3-a456-4266141740005204000053039865802BR5915Test Merchant6009Sao Paulo62070503***63041234"
}
},
"status": "awaiting_funds",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <API_KEY>
.
Response
An array containing all transactions made by wallets of this project.
The id of the transaction.
The customer performing the operation.
The type of this transaction
on_ramp
An object containing the parameters used for this on-ramp.
The fiat currency to convert from.
BRL
The stablecoin to convert to.
USDC
, USDT
The amount to be converted from fiat to stablecoin.
"100.99"
The transaction's results.
awaiting_funds
, processing
The payment details to add funds for this on ramp transaction.
The payment rail that will be used for this transaction.
pix
The PIX copy-and-paste code to be used for payment.
"00020126580014br.gov.bcb.pix0136123e4567-e89b-12d3-a456-4266141740005204000053039865802BR5915Test Merchant6009Sao Paulo62070503***63041234"
awaiting_funds
, processing
, success
, failed
The timestamp from when the transaction was submitted.
The timestamp from when the transaction was last updated.
curl --request GET \
--url https://api-sandbox.lumx.io/transactions \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "on_ramp",
"request": {
"sourceCurrency": "BRL",
"targetCurrency": "USDC",
"amount": "100.99",
"payment": {
"rail": "pix"
}
},
"state": {
"status": "awaiting_funds",
"payment": {
"rail": "pix",
"brCode": "00020126580014br.gov.bcb.pix0136123e4567-e89b-12d3-a456-4266141740005204000053039865802BR5915Test Merchant6009Sao Paulo62070503***63041234"
}
},
"status": "awaiting_funds",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}