πŸ”’Get Transaction History

Getting transaction history by filters

GET https://api.staging.dexilon.io/api/v1/transactions/history

Weight: 10

Query Parameters

Name
Type
Description

accountType*

Enum

Type of account: SPOT, FUTURE.

type

Enum

Type of transaction: DEPOSIT, WITHDRAW, FEE, FUNDING_FEE, REALIZED_PL, LIQUIDATION_FEE, TRANSFER_TO_SPOT, TRANSFER_TO_FUTURE, REWARD.

asset

String

Asset name

dateFrom

Date

dateTo

Date

page

Integer

Number of page

size

String

Number of returned transactions

{
    "content": 
        {
            "transactionId": 61099728,
            "transactionUuid": "99ccdb40-a3bc-4472-b721-ff3a525f3974",
            "asset": "usdt",
            "link": "https://explorer.staging.dexilon.io/transactions/D23DF73DFC0085BE6E5365459B0A6F6FC90065FCB0BA17FF2EC7ACAE2D745E9B",
            "amount": -0.204477,
            "type": "FEE",
            "time": 1679175342623
        },
        {
            "transactionId": 61099727,
            "transactionUuid": "99ccdb40-a3bc-4472-b721-ff3a525f3974",
            "asset": "usdt",
            "link": "https://explorer.staging.dexilon.io/transactions/D23DF73DFC0085BE6E5365459B0A6F6FC90065FCB0BA17FF2EC7ACAE2D745E9B",
            "amount": -0.66,
            "type": "REALIZED_PL",
            "time": 1679175342623
        }
    ],
    "totalPages": 118,
    "totalElements": 2352,
    "size": 20
}

Last updated