TRANSACTIONS Endpoints
Authorizations
Query parameters
pagenumber · min: 1OptionalDefault:
1
limitnumber · min: 10OptionalDefault:
10
namestring · enumOptionalPossible values:
sortstring · enumOptionalDefault:
Sorting for create datetime
descending
Possible values: Responses
200Success
application/json
401Error
application/json
404Error
application/json
500Error
application/json
504Error
application/json
get
GET /transactions HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"list": [
{
"id": "text",
"referenceId": "text",
"type": "incoming",
"amount": 1,
"amountType": "gross",
"status": "processing",
"statusNote": "Deposit successfully executed",
"timestampCreated": "2025-07-19T15:58:52.665Z",
"timestampUpdated": "2025-07-19T15:58:52.665Z",
"operations": [
{
"id": 1,
"type": "deposit",
"status": "processing",
"addressSource": "text",
"addressDestination": "text",
"currency": "text",
"amount": 1,
"serviceFee": "text",
"amountFinal": 1,
"txHash": "text"
}
]
}
],
"pagination": {
"totalPages": 1,
"totalItems": 1,
"currentPage": 1,
"limitItems": 1
}
}
Authorizations
Path parameters
idstringRequired
Responses
200Success
application/json
401Error
application/json
404Error
application/json
500Error
application/json
504Error
application/json
get
GET /transactions/{id} HTTP/1.1
Host: tunell-gateway.ecng.digital
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"id": "text",
"referenceId": "text",
"type": "incoming",
"amount": 1,
"amountType": "gross",
"status": "processing",
"statusNote": "Deposit successfully executed",
"timestampCreated": "2025-07-19T15:58:52.665Z",
"timestampUpdated": "2025-07-19T15:58:52.665Z",
"operations": [
{
"id": 1,
"type": "deposit",
"status": "processing",
"addressSource": "text",
"addressDestination": "text",
"currency": "text",
"amount": 1,
"serviceFee": "text",
"amountFinal": 1,
"txHash": "text"
}
]
}
Last updated