Skip to main content
POST
/
v2
/
hashdit
/
solana-token-security
Solana Token Security
curl --request POST \
  --url https://service.hashdit.io/v2/hashdit/solana-token-security \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <x-api-key>' \
  --data '
{
  "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
}
'
{
  "code": "0",
  "status": "ok",
  "data": {
    "address": "sol:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "address_type": "Solana",
    "overall_risk_level": "Low Risk",
    "overall_score": 80,
    "token_info": {
      "name": "USDC",
      "symbol": "USDC",
      "decimals": 6,
      "price": 1
    },
    "mint_authority": {
      "is_mintable": "1",
      "is_risky": "0",
      "authority_type": "wallet"
    },
    "freeze_authority": {
      "is_freezable": "1",
      "is_risky": "0"
    },
    "holders_concentration": {
      "total_holders": "5717115",
      "top1_concentration": "0.2231",
      "top5_concentration": "0.4445",
      "top10_concentration": "0.4908"
    },
    "market_info": {
      "has_market_info": "1",
      "total_pools": "10",
      "total_volume_24h": "1147949703.936499"
    },
    "threat_intelligence": {
      "risk_level": "0",
      "trust_level": "2"
    },
    "scanned_time": 1765819025
  }
}
The Solana Token Security endpoint does not require a chain ID as it is dedicated only for the Solana network.

Headers

X-API-KEY
string
required

Your HashDit API key

Body

application/json

Solana token mint address to analyze

address
string
required

Solana token mint address.

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

Response

Successful response

code
string

API result code. "0" indicates success.

Example:

"0"

status
string

Request status.

Example:

"ok"

data
object