getHistoryTransaction
This API retrieves historical transaction data from the blockchain for a specified token address. Below is a detailed explanation of the endpoint, including request parameters.
Example Request
Here’s an example of calling the API using curl
:
Endpoint: /getHistoryTransaction Method: GET Summary: Retrieve historical transaction data for a specific token.
Request Parameters
apiKey
String
Yes
API key
tokenAddress
String
Yes
Token address
CUUZJST5B8fs43ikm5adsQrw4qz5n4mAgEiTzii2pump
startTime
String
Yes
Query start time
2025-03-05 02:00:00
zoneId
String
Yes
Time zone
UTC
count
Integer
Yes
Items per page
100
page
Integer
Yes
Page number
1
blockchain
String
Yes
Type of blockchain
solana
Response Structure
The response is a ResponseResult
object containing a List<DexTradersTnx>
. Each DexTradersTnx
object has the following fields:
Field
Type
Description
Example
blockTime
String
Timestamp of the block
"2025-03-05 02:01:23"
marketAddress
String
Address of the market
"ABC123XYZ..."
amount
String
Transaction amount
"500.25"
quotaMintAddress
String
Mint address of the quota token
"XYZ789ABC..."
quotaOwner
String
Owner of the quota
"DEF456GHI..."
quotaName
String
Name of the quota token
"QuotaToken"
quotaSymbol
String
Symbol of the quota token
"QT"
quotaType
String
Type of the quota token
"ERC20"
quotaAmount
String
Amount of the quota token
"1000.50"
quotaAmountInUSD
String
Quota amount in USD
"1500.75"
priceInUSD
BigDecimal
Price of the transaction in USD
12.34
transactionSignature
String
Unique signature of the transaction
"TX123456789..."
Last updated