First Buyers REST API

Documentation
API Reference

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

DocsAPI ReferenceFirst Buyers
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);
Last updated: 2/25/2026Edit on GitHub