SaturnX
  • WELCOME
    • ☀️What is Saturnx?
    • Pricing with Rate limits
      • Prepaid Credits
      • Pay with Crypto
  • RPC Nodes
    • RPCs Overview
  • BLOCKCHAIN
    • Overview
    • HTTP
      • getHistoryCandleStick
      • getHistoryTransaction
      • getAccountTnx
      • getAccountTnxByToken
      • getHoldersTop
      • getHotPairs
      • getTokenSecurity
    • WebSocket
      • {blockchain}.broadcast.transactions
      • {blockchain}.broadcast.kline
    • Kafka
Powered by GitBook
On this page
  • Example Request
  • Request Parameters
  • Response Structure
  1. BLOCKCHAIN
  2. HTTP

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:

curl -L \
  --request GET \
  --url "https://api.saturnx.dev/api/process/getHistoryTransaction?apiKey=111&tokenAddress=CUUZJST5B8fs43ikm5adsQrw4qz5n4mAgEiTzii2pump&startTime=2025-03-05%2002:00:00&zoneId=UTC&count=100&page=1&blockchain=solana" \
  --header "Content-Type: application/json"

Endpoint: /getHistoryTransaction Method: GET Summary: Retrieve historical transaction data for a specific token.

Request Parameters

Parameter
Type
Required
Description
Example Value

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..."

PreviousgetHistoryCandleStickNextgetAccountTnx

Last updated 1 month ago