Skip to Content
APIDeep AnalysisGet Stablecoin Liquidity Transactions

Get Stablecoin Liquidity Transactions

1. Overview & Typical Use

Returns stablecoin liquidity operations (add liquidity, remove liquidity, token exchanges) on DeFi protocols, with rich filters including value range, time range, token, pool, project, and influence level. Maximum query window is 60 days.

  • Typical use: monitor large stablecoin liquidity operations; analyze DeFi protocol activity.
  • When not to use: for regular TRC20 transfers use the TRC20 transfers endpoint.

2. Endpoint & Authentication

GET /api/deep/stableCoin/liquidity/transaction

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

3. Request

ParameterTypeRequiredDefaultDescription
sortstringNoSort field
minValuenumberNo1000Minimum transaction value (USD)
maxValuenumberNoMaximum transaction value (USD)
typestringNoOperation type: AddLiquidity / RemoveLiquidity / TokenExchange
operatorstringNoFilter by operator address
startTimestampintegerNoStart time
endTimestampintegerNoEnd time; max window is 60 days from start
tokenstringNoFilter by token contract address
poolstringNoFilter by pool contract address
projectstringNoFilter by protocol name (e.g., SunSwap)
influencestringNoInfluence level filter
minTokenValuestringNoMinimum per-token value in the operation
maxTokenValuestringNoMaximum per-token value in the operation

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
totalintegerRequiredTotal matching record count
dataarrayRequiredLiquidity transaction list
refreshTimeInfoobjectRequiredCache refresh time metadata

data[] element

FieldTypeRequiredDescriptionUnit/Precision
projectstringRequiredProtocol name (e.g., SunSwap)
typestringRequiredOperation type: AddLiquidity / RemoveLiquidity / TokenExchange
valuestringRequiredTotal transaction value (USD)USD
operationarrayRequiredToken details for this operation
operatorstringRequiredOperator address
dateCreatedintegerRequiredTransaction timemilliseconds
hashstringRequiredTransaction hash

data[].operation[] element

FieldTypeRequiredDescriptionUnit/Precision
tokenIdstringRequiredToken contract address
tokenNamestringRequiredToken name
tokenAbbrstringRequiredToken abbreviation
tokenDecimalintegerRequiredToken decimal precision
tokenAmountstringRequiredToken amount (minimum unit)minimum unit (divide by 10^tokenDecimal)
tokenValuestringRequiredUSD value of this token in the operationUSD

refreshTimeInfo object

FieldTypeRequiredDescriptionUnit/Precision
typestringRequiredData refresh type, e.g. realtime
lastUpdateTimeintegerRequiredLast update timeSecond timestamp

5. Errors

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

  • General error handling rules apply; no special error scenarios.
Last updated on: