Skip to Content
APIDeep AnalysisGet Stablecoin Large Transactions

Get Stablecoin Large Transactions

1. Overview & Typical Use

Returns a list of stablecoin large transactions filtered by type, amount, address, and time.

  • Typical use: monitoring stablecoin large-transaction alerts, whale movement analysis.
  • When not to use: to query large transactions for a specific account, use “Get Large Transactions”.

2. Endpoint & Authentication

GET /api/deep/stableCoin/bigAmount

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
addressstringNoFilter by address
txUsdstringNoTransaction amount range in USD, comma-separated, e.g. 1,10
txAmountstringNoTransaction quantity range, comma-separated, e.g. 100,10000
relatedAddressstringNoFilter by related address
relatedTokenstringNoFilter by related token
startTimeintegerNoStart time in seconds. Maximum interval: 6 months
endTimeintegerNoEnd time in seconds. Maximum interval: 6 months
limitintegerNo100Number of results, maximum 100
typesstringYesTransfer types, comma-separated. 0: all, 1: incoming, 2: outgoing, 3: swap, 4: add liquidity, 5: remove liquidity, 6: deposit, 7: borrow, 8: repay, 9: withdraw
sortBystringNotimeSort field: time, amount, usd (total value)
ascbooleanNofalsetrue for ascending, false for descending

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
totalintegerRequiredTotal number of matches
codeintegerRequiredStatus code; 0 means success
dataarrayRequiredTransaction list
tokenInfosobjectRequiredToken info map; key is contract address, contains tokenAbbr/tokenName/tokenDecimal etc.; empty object {} when no tokens
contractMapobjectRequiredMap of address → whether it is a contract (boolean)
contractInfoobjectRequiredContract info map; empty object {} when no contracts

data[] element

FieldTypeRequiredDescriptionUnit/Precision
amountnumberRequiredTransaction quantity
amountUsdnumberRequiredTransaction USD valueUSD
contractAddressstringRequiredToken contract address
externalContractAddressstringOptionalAssociated external contract address (e.g. DeFi protocol contract); omitted if absent
dateTimeintegerRequiredTransaction timeMillisecond timestamp
fromAddressstringRequiredSender address
fromAddressTagstringRequiredSender label
toAddressstringRequiredRecipient address
toAddressTagstringRequiredRecipient label
hashstringRequiredTransaction hash
transferTypestringRequiredTransfer type code

5. Errors

For HTTP status codes, see Common Errors. Key points for this endpoint:

  • types not provided: returns an error response.
Last updated on: