Skip to Content
APIDeep AnalysisGet Blacklist Transactions

Get Blacklist Transactions

1. Overview & Typical Use

Returns transaction records where addresses were added to or removed from a stablecoin blacklist.

  • Typical use: track stablecoin blacklist changes, compliance monitoring.
  • When not to use: to query account security information use “Check Account Security”.

2. Endpoint & Authentication

GET /api/stableCoin/blackList

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

3. Request

ParameterTypeRequiredDefaultDescription
tokenAddressstringNoFilter by stablecoin contract address
blackAddressstringNoFilter by blacklisted address
sortintegerNo11: by amount, 2: by time
directionintegerNo11: ascending, 2: descending
startintegerNo0Starting index
limitintegerNo20Number to return, range [20, 100]; values less than 20 will return an error

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
totalintegerRequiredTotal blacklist record count
dataarrayRequiredBlacklist transaction list

data[] element

FieldTypeRequiredDescriptionUnit/Precision
blackAddressstringRequiredAddress added to the blacklist
tokenNamestringRequiredToken name
numstringRequiredAmount frozen
timeintegerRequiredEvent timeseconds timestamp
transHashstringRequiredTransaction hash
contractAddressstringRequiredToken contract address

5. Errors

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

  • limit outside [20, 100] range: returns {"message": "limit must be in range [20, 100]"}.
  • General error handling rules apply.
Last updated on: