API Reference
First Buyers
Early token buyers list
Returns up to the first 100 buyers for a token.
Endpoint#
GET /token/first-buyers/:tokenAddress
Request (curl)#
curl -H "x-api-key: YOUR_KEY" \
https://us-east.dritan.dev/token/first-buyers/So11111111111111111111111111111111111111112
Request (TypeScript, SDK)#
import { DritanClient } from "dritan-sdk";
const client = new DritanClient({ apiKey: "YOUR_KEY" });
const res = await client.getFirstBuyers("So11111111111111111111111111111111111111112");
console.log(res.buyers);