Security Endpoint
Overview
This document describes the API endpoint GET https://api.soulscanner.xyz/security/
, which provides detailed information about the security and characteristics of a specific token, identified by the unique token address.
Endpoint
URL:
https://api.soulscanner.xyz/security/:address
Method:
GET
Response Format:
JSON
Response Structure
The API returns a JSON object with the following structure:
Fields
name:
string
The name of the token, in this case, "Soul Scanner".
symbol:
string
The ticker symbol of the token, e.g., "SOUL".
mintable:
boolean
Indicates if the token can be minted (created) after its initial issuance.
false
means no additional tokens can be minted.
freezable:
boolean
Indicates if the token can be frozen by its creator or a designated authority.
false
means token accounts cannot be frozen.
total_supply:
number
The total supply of the token currently in circulation in decimal formatted value.
lp_burn_percentage:
number
The percentage of liquidity pool (LP) tokens that have been burned.
i_lp_percentage:
number
The percentage of supply used in the initial liquidity pool.
top_holders_percentage:
number
The percentage of tokens held by the top holders.
high_holders:
object
A key-value pair indicating the wallet address and the percentage of total supply held by each.
airdrop_percentage:
number
The percentage of tokens that were distributed via airdrops.
bundled_buy_percentage:
number
The percentage of tokens that were purchased via bundled buys.
deployer:
string
The wallet address of the token deployer.
dev_best_ath_usd:
number
The best All-Time High (ATH) reached by a token associated with this developer.
dev_best_token:
string
The token address of the developer's best-performing token.
dev_total_launches:
number
The total number of token launches by this developer.
Example Request
Example Response
Error Handling
If the request fails, the API will return an appropriate HTTP status code and an error message in the status
field, such as "status": "NO TOKEN FOUND"
with additional details about the error.
Last updated