Meteora THS Overview

Documentation
API Reference

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

DocsMeteora THSMeteora THS
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#

MethodPathDescription
GET/healthHealth check
GET/ths/{wallet}THS metrics for a wallet
GET/ths/{wallet}/tokensTHS metrics for a wallet (subset of token mints, query params)
POST/ths/{wallet}/tokensTHS metrics for a wallet (subset of token mints, JSON body)
GET/ths/top-walletsPaginated 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);
Last updated: 2/25/2026Edit on GitHub