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
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
tokenAddress | string | No | — | Filter by stablecoin contract address |
blackAddress | string | No | — | Filter by blacklisted address |
sort | integer | No | 1 | 1: by amount, 2: by time |
direction | integer | No | 1 | 1: ascending, 2: descending |
start | integer | No | 0 | Starting index |
limit | integer | No | 20 | Number to return, range [20, 100]; values less than 20 will return an error |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
total | integer | Required | Total blacklist record count | — |
data | array | Required | Blacklist transaction list | — |
data[] element
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
blackAddress | string | Required | Address added to the blacklist | — |
tokenName | string | Required | Token name | — |
num | string | Required | Amount frozen | — |
time | integer | Required | Event time | seconds timestamp |
transHash | string | Required | Transaction hash | — |
contractAddress | string | Required | Token contract address | — |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
limitoutside[20, 100]range: returns{"message": "limit must be in range [20, 100]"}.- General error handling rules apply.
Last updated on: