Get Token Security Information
curl --request GET \
--url https://demo-api.mobula.io/api/2/token/securityimport requests
url = "https://demo-api.mobula.io/api/2/token/security"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://demo-api.mobula.io/api/2/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://demo-api.mobula.io/api/2/token/security",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://demo-api.mobula.io/api/2/token/security"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://demo-api.mobula.io/api/2/token/security")
.asString();require 'uri'
require 'net/http'
url = URI("https://demo-api.mobula.io/api/2/token/security")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"address": "<string>",
"chainId": "<string>",
"contractHoldingsPercentage": 123,
"contractBalanceRaw": "<string>",
"burnedHoldingsPercentage": 123,
"totalBurnedBalanceRaw": "<string>",
"buyFeePercentage": 123,
"sellFeePercentage": 123,
"transferFeePercentage": 123,
"maxWalletAmountRaw": "<string>",
"maxSellAmountRaw": "<string>",
"maxBuyAmountRaw": "<string>",
"maxTransferAmountRaw": "<string>",
"isLaunchpadToken": true,
"top10HoldingsPercentage": 123,
"top50HoldingsPercentage": 123,
"top100HoldingsPercentage": 123,
"top200HoldingsPercentage": 123,
"isMintable": true,
"isFreezable": true,
"proTraderVolume24hPercentage": 123,
"transferPausable": true,
"isBlacklisted": true,
"isHoneypot": true,
"isNotOpenSource": true,
"renounced": true,
"locked": "<string>",
"isWhitelisted": true,
"balanceMutable": true,
"lowLiquidity": "<string>",
"burnRate": "<string>",
"modifyableTax": true,
"selfDestruct": true,
"staticAnalysisDate": "<string>",
"liquidityBurnPercentage": 123,
"securityScore": 123,
"securityScoreUpdatedAt": "<string>",
"securityScoreDetails": {
"version": 3.1,
"base": 123,
"killed": true,
"killReason": "<string>",
"hardKill": {
"id": "<string>",
"reason": "<string>",
"description": "<string>",
"meta": {}
},
"checks": [
{
"id": 10,
"name": "<string>",
"delta": 123,
"rawDelta": 123,
"cap": 123,
"cexAdjusted": true,
"meta": {}
}
],
"hardFloors": [
{
"id": "<string>",
"description": "<string>",
"maxScore": 123,
"meta": {}
}
],
"cexMultiplier": 123,
"tier1Cexes": [
"<string>"
],
"inputs": {
"chainId": "<string>",
"address": "<string>",
"liquidityUSD": 123,
"marketCapUSD": 123,
"volume24hUSD": 123,
"organicVolume24hUSD": 123,
"organicRatio": 123,
"priceChange24hPct": 123,
"holdersCount": 123,
"top10HoldingsPct": 123,
"lpHoldingsPct": 123,
"bundlersCount": 123,
"bundlersHoldingsPct": 123,
"insidersCount": 123,
"insidersHoldingsPct": 123,
"snipersCount": 123,
"snipersHoldingsPct": 123,
"devHoldingsPct": 123,
"proTradersCount": 123,
"proTradersHoldingsPct": 123,
"deployerTokensCount": 123,
"deployerMigrationsCount": 123,
"migrationRate": 123,
"tier1Cexes": [
"<string>"
],
"cexMultiplier": 123,
"ageDays": 123,
"bondedAgeDays": 123,
"securityFlags": {},
"securitySourcesAvailable": [
"<string>"
],
"liquidityMaxUSD": 123,
"athUSD": 123,
"athDate": "<string>",
"totalFeesPaidUSD": 123
},
"rawScore": 123,
"finalScore": 123,
"preMigrationReduction": {
"applied": true,
"factor": 123,
"totalFeesPaidUSD": 123,
"threshold": 123
},
"computedAt": "<string>",
"athDrawdownReduction": {
"applied": true,
"factor": 123,
"drawdownPct": 123,
"athUSD": 123,
"athDate": "<string>",
"withinWindow": true,
"tier": "<string>"
}
},
"preMigrationScoreReduction": {
"applied": true,
"factor": 123,
"totalFeesPaidUSD": 123,
"threshold": 123
},
"athDrawdownScoreReduction": {
"applied": true,
"factor": 123,
"drawdownPct": 123,
"athUSD": 123,
"athDate": "<string>",
"withinWindow": true,
"tier": "<string>"
},
"liquidityAnalysis": [
{
"poolAddress": "<string>",
"poolType": "<string>",
"burnedPercentage": 123,
"lockedPercentage": 123,
"contractPercentage": 123,
"unlockedPercentage": 123,
"topHolders": [
{
"address": "<string>",
"percentage": 123,
"protocol": "<string>"
}
]
}
]
},
"hostname": "<string>"
}Market Data
Get Token Security
Retrieve comprehensive security information for a token including contract holdings, burned tokens, trading fees, transfer restrictions, holder distribution analysis, contract risk indicators, and AI-powered static code analysis for verified EVM contracts.
GET
/
2
/
token
/
security
Get Token Security Information
curl --request GET \
--url https://demo-api.mobula.io/api/2/token/securityimport requests
url = "https://demo-api.mobula.io/api/2/token/security"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://demo-api.mobula.io/api/2/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://demo-api.mobula.io/api/2/token/security",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://demo-api.mobula.io/api/2/token/security"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://demo-api.mobula.io/api/2/token/security")
.asString();require 'uri'
require 'net/http'
url = URI("https://demo-api.mobula.io/api/2/token/security")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"address": "<string>",
"chainId": "<string>",
"contractHoldingsPercentage": 123,
"contractBalanceRaw": "<string>",
"burnedHoldingsPercentage": 123,
"totalBurnedBalanceRaw": "<string>",
"buyFeePercentage": 123,
"sellFeePercentage": 123,
"transferFeePercentage": 123,
"maxWalletAmountRaw": "<string>",
"maxSellAmountRaw": "<string>",
"maxBuyAmountRaw": "<string>",
"maxTransferAmountRaw": "<string>",
"isLaunchpadToken": true,
"top10HoldingsPercentage": 123,
"top50HoldingsPercentage": 123,
"top100HoldingsPercentage": 123,
"top200HoldingsPercentage": 123,
"isMintable": true,
"isFreezable": true,
"proTraderVolume24hPercentage": 123,
"transferPausable": true,
"isBlacklisted": true,
"isHoneypot": true,
"isNotOpenSource": true,
"renounced": true,
"locked": "<string>",
"isWhitelisted": true,
"balanceMutable": true,
"lowLiquidity": "<string>",
"burnRate": "<string>",
"modifyableTax": true,
"selfDestruct": true,
"staticAnalysisDate": "<string>",
"liquidityBurnPercentage": 123,
"securityScore": 123,
"securityScoreUpdatedAt": "<string>",
"securityScoreDetails": {
"version": 3.1,
"base": 123,
"killed": true,
"killReason": "<string>",
"hardKill": {
"id": "<string>",
"reason": "<string>",
"description": "<string>",
"meta": {}
},
"checks": [
{
"id": 10,
"name": "<string>",
"delta": 123,
"rawDelta": 123,
"cap": 123,
"cexAdjusted": true,
"meta": {}
}
],
"hardFloors": [
{
"id": "<string>",
"description": "<string>",
"maxScore": 123,
"meta": {}
}
],
"cexMultiplier": 123,
"tier1Cexes": [
"<string>"
],
"inputs": {
"chainId": "<string>",
"address": "<string>",
"liquidityUSD": 123,
"marketCapUSD": 123,
"volume24hUSD": 123,
"organicVolume24hUSD": 123,
"organicRatio": 123,
"priceChange24hPct": 123,
"holdersCount": 123,
"top10HoldingsPct": 123,
"lpHoldingsPct": 123,
"bundlersCount": 123,
"bundlersHoldingsPct": 123,
"insidersCount": 123,
"insidersHoldingsPct": 123,
"snipersCount": 123,
"snipersHoldingsPct": 123,
"devHoldingsPct": 123,
"proTradersCount": 123,
"proTradersHoldingsPct": 123,
"deployerTokensCount": 123,
"deployerMigrationsCount": 123,
"migrationRate": 123,
"tier1Cexes": [
"<string>"
],
"cexMultiplier": 123,
"ageDays": 123,
"bondedAgeDays": 123,
"securityFlags": {},
"securitySourcesAvailable": [
"<string>"
],
"liquidityMaxUSD": 123,
"athUSD": 123,
"athDate": "<string>",
"totalFeesPaidUSD": 123
},
"rawScore": 123,
"finalScore": 123,
"preMigrationReduction": {
"applied": true,
"factor": 123,
"totalFeesPaidUSD": 123,
"threshold": 123
},
"computedAt": "<string>",
"athDrawdownReduction": {
"applied": true,
"factor": 123,
"drawdownPct": 123,
"athUSD": 123,
"athDate": "<string>",
"withinWindow": true,
"tier": "<string>"
}
},
"preMigrationScoreReduction": {
"applied": true,
"factor": 123,
"totalFeesPaidUSD": 123,
"threshold": 123
},
"athDrawdownScoreReduction": {
"applied": true,
"factor": 123,
"drawdownPct": 123,
"athUSD": 123,
"athDate": "<string>",
"withinWindow": true,
"tier": "<string>"
},
"liquidityAnalysis": [
{
"poolAddress": "<string>",
"poolType": "<string>",
"burnedPercentage": 123,
"lockedPercentage": 123,
"contractPercentage": 123,
"unlockedPercentage": 123,
"topHolders": [
{
"address": "<string>",
"percentage": 123,
"protocol": "<string>"
}
]
}
]
},
"hostname": "<string>"
}⌘I