API Reference
Deployer Stats
Creator history and bonding status
Given a token mint, returns the token deployer / creator wallet along with stats about other tokens they've launched.
Bonding curve completion (often called "graduation") is treated as bonded when curvePercentage === 100.
Endpoint#
GET /token/deployer-stats/:tokenAddress
Request (curl)#
curl -H "x-api-key: YOUR_KEY" \
https://us-east.dritan.dev/token/deployer-stats/So11111111111111111111111111111111111111112
Request (TypeScript, SDK)#
import { DritanClient } from "dritan-sdk";
const client = new DritanClient({ apiKey: "YOUR_KEY" });
const res = await client.getDeployerStats("So11111111111111111111111111111111111111112");
console.log(res.deployer, res.bonded, res.nonBonded);
Response#
{
"mint": "So11111111111111111111111111111111111111112",
"deployer": "7Y...Wallet",
"total": 42,
"deployed": 10,
"bonded": 2,
"nonBonded": 8
}