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"
}
'import requests
url = "https://service.hashdit.io/v2/hashdit/solana-token-security"
payload = { "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" }
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({address: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'})
};
fetch('https://service.hashdit.io/v2/hashdit/solana-token-security', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://service.hashdit.io/v2/hashdit/solana-token-security",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://service.hashdit.io/v2/hashdit/solana-token-security"
payload := strings.NewReader("{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://service.hashdit.io/v2/hashdit/solana-token-security")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://service.hashdit.io/v2/hashdit/solana-token-security")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}"
response = http.request(request)
puts response.read_body{
"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
}
}{
"code": "<string>",
"status": "<string>"
}{
"code": "<string>",
"message": "<string>",
"apiKey": ""
}Solana Token Security
Solana Token Security
Performs a comprehensive security assessment of a Solana token. The API analyzes mint authority, freeze authority, transfer restrictions, holder concentration, market liquidity, administrative privileges, and threat intelligence to determine the token’s overall risk profile.
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"
}
'import requests
url = "https://service.hashdit.io/v2/hashdit/solana-token-security"
payload = { "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" }
headers = {
"X-API-KEY": "<x-api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<x-api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({address: 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'})
};
fetch('https://service.hashdit.io/v2/hashdit/solana-token-security', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://service.hashdit.io/v2/hashdit/solana-token-security",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://service.hashdit.io/v2/hashdit/solana-token-security"
payload := strings.NewReader("{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<x-api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://service.hashdit.io/v2/hashdit/solana-token-security")
.header("X-API-KEY", "<x-api-key>")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://service.hashdit.io/v2/hashdit/solana-token-security")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<x-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}"
response = http.request(request)
puts response.read_body{
"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
}
}{
"code": "<string>",
"status": "<string>"
}{
"code": "<string>",
"message": "<string>",
"apiKey": ""
}The Solana Token Security endpoint does not require a chain ID as it is dedicated only for the Solana network.
Headers
Your HashDit API key
Body
application/json
Solana token mint address to analyze
Solana token mint address.
Example:
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
Was this page helpful?
⌘I