EQGate

Transaction Logs

Retrieve your transaction history

Transaction Logs

Get a paginated list of all transactions for your merchant account.

GET /v1/logs

Query Parameters

ParameterTypeDefaultDescription
limitnumber50Number of transactions (max 100)
offsetnumber0Pagination offset
statusstring-Filter by status
chainstring-Filter by chain (tron/bsc)

Example Request

curl "https://api.eqgate.com/v1/logs?limit=20&status=completed" \
  -H "X-API-Key: your_api_key"

Response

{
  "status": "success",
  "transactions": [
    {
      "id": "tx_abc123",
      "address": "TXabc123def456...",
      "chain": "TRON",
      "token": "USDT",
      "tx_hash": "abc123def456...",
      "sweep_tx_hash": "def456ghi789...",
      "amount": 100,
      "amount_usd": 100,
      "fee": 1,
      "fee_usd": 1,
      "net_amount": 99,
      "status": "COMPLETED",
      "confirmations": 19,
      "metadata": {
        "order_id": "ORD-12345"
      },
      "created_at": "2024-01-15T11:30:00.000Z"
    }
  ],
  "pagination": {
    "total": 150,
    "limit": 20,
    "offset": 0,
    "has_more": true
  }
}

On this page