Check Account Security
1. Overview & Typical Use
Returns risk flags for a specified account address, including fraudulent transaction history, fraudulent token creation, advertising spam, and stablecoin blacklist status.
- Typical use: pre-transaction risk check, address security assessment, compliance review.
- When not to use: to check token security use “Check Token Security”; to check approval security use “Check Account Approval Security”.
2. Endpoint & Authentication
GET /api/security/account/data
For Base URL and authentication, see Common Network & Authentication.
This endpoint requires an API Key; calls without a Key return 401.
3. Request
Fields
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
address | string | Yes | — | Account address to check |
4. Response
Fields
Top-level
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
send_ad_by_memo | boolean | Required | Whether the address frequently sends ads via memo | — |
has_fraud_transaction | boolean | Required | Whether there are fraudulent transactions | — |
fraud_token_creator | boolean | Required | Whether the address is a fraudulent token creator | — |
is_black_list | boolean | Required | Whether the address is on the stablecoin blacklist | — |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- API Key Required: returns 401 if not provided.
- When
addressis invalid or does not exist, all fields returnfalseas a default response — no error is raised.
Last updated on: