Meteora THS
Meteora THS
Token Holder Standard (THS) metrics API
Meteora THS is a public REST API for querying Token Holder Standard (THS) metrics for Solana wallets.
No API key is required.
Base URL#
https://ths.dritan.dev
Endpoints#
| Method | Path | Description |
|---|---|---|
| GET | /health | Health check |
| GET | /ths/{wallet} | THS metrics for a wallet |
| GET | /ths/{wallet}/tokens | THS metrics for a wallet (subset of token mints, query params) |
| POST | /ths/{wallet}/tokens | THS metrics for a wallet (subset of token mints, JSON body) |
| GET | /ths/top-wallets | Paginated top wallets ranked by THS score |
SDK (TypeScript)#
npm i dritan-sdk
import { MeteoraThsClient } from "dritan-sdk";
const ths = new MeteoraThsClient({ baseUrl: "https://ths.dritan.dev" });
const res = await ths.getThsScore("7Y...Wallet");
console.log(res.score);