Run in Apidog
This API returns a list of deposits in a compact form. It may be used from time to time as a fallback in case the webhook fails. It currently returns up to 200 rows per query. start included, end excluded - [start, end)
Request Add the parameter Authorization
to Headers οΌwhose value is to concatenate the Token after the Bearer. Example: Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://depix.eulen.app/api/deposits?start=2006-01-01 or 2006-01-01T00:00:00-03:00&end=2006-02-01 or 2006-02-01T00:00:00-03:00&status=' \
--header 'X-Nonce;' \
--header 'X-Async: auto' \
--header 'Authorization: Bearer <token>' Responses application/json Generate Code
[
{
"qrId" : "0198443f48c273d3afc72eb454025d19" ,
"status" : "depix_sent" ,
"bankTxId" : "71"
} ,
{
"qrId" : "0198443f48c273d3afc72eb454025d19" ,
"status" : "under_review" ,
"bankTxId" : "70"
} ,
{
"qrId" : "0198443f48c273d3afc72eb454025d19" ,
"status" : "refunded" ,
"bankTxId" : "63"
}
]
Modified atΒ 2025-12-10 18:09:06