TRANSACTIONS Endpoints

Get list of all transactions

get
Authorizations
Query parameters
pagenumber · min: 1OptionalDefault: 1
limitnumber · min: 10OptionalDefault: 10
namestring · enumOptionalPossible values:
sortstring · enumOptional

Sorting for create datetime

Default: descendingPossible values:
Responses
200Success
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
  }
}

Get specific transaction data

get
Authorizations
Path parameters
idstringRequired
Responses
200Success
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