Token Risk REST API

Documentation
API Reference

Everything you need to integrate Dritan's low-latency Solana market data into your trading infrastructure.

DocsAPI ReferenceToken Risk
API Reference

Token Risk

Risk and distribution signals

Returns risk and distribution signals for a token.

Endpoint#

GET /token/risk/:tokenAddress

Request (curl)#

curl -H "x-api-key: YOUR_KEY" \
  https://us-east.dritan.dev/token/risk/So11111111111111111111111111111111111111112

Request (TypeScript, SDK)#

import { DritanClient } from "dritan-sdk";

const client = new DritanClient({ apiKey: "YOUR_KEY" });
const res = await client.getTokenRisk("So11111111111111111111111111111111111111112");
console.log(res);

Response#

{
  "mint": "So11111111111111111111111111111111111111112",
  "globalFeesPaid": 123.45,
  "bundlers": { "count": 2, "totalPercentage": 7.1 },
  "insiders": { "count": 3, "totalPercentage": 4.2 },
  "snipers": { "count": 5, "totalPercentage": 12.9 },
  "top10": 19.5,
  "devPercentage": 1.0
}
Last updated: 2/25/2026Edit on GitHub