THS Score by Tokens (GET)

Documentation
API Reference

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

DocsMeteora THSTHS Score (Tokens, GET)
Meteora THS

THS Score (Tokens, GET)

GET /ths/{wallet}/tokens

Returns THS metrics for a wallet limited to specific token mints.

Parameters#

  • wallet (path, required): Base58 Solana wallet address
  • tokenMints (query, required): repeated query params
  • debug / breakdown (query, optional)

Request (curl)#

curl "https://ths.dritan.dev/ths/7Y...Wallet/tokens?tokenMints=So11111111111111111111111111111111111111112&tokenMints=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

Request (TypeScript, SDK)#

import { MeteoraThsClient } from "dritan-sdk";

const ths = new MeteoraThsClient();
const res = await ths.getThsScoreForTokens("7Y...Wallet", [
  "So11111111111111111111111111111111111111112",
  "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
]);
console.log(res.score);

Response#

{
  "wallet": "7Y...Wallet",
  "score": 6.91,
  "realizedPnLUsd": 321.0,
  "realizedPnLWeightedUsd": 210.5,
  "totals": { "buys": 5, "sells": 3 },
  "analyzedTxns": 40,
  "matchedTxCount": 30,
  "unmatchedTxCount": 10,
  "avgHoldTimeDays": 1.25,
  "avgHoldTimeHours": 30.0,
  "avgHoldTimeMinutes": 1800.0,
  "avgHoldTimeSeconds": 108000,
  "avgHoldTimePretty": "1d 6h"
}
Last updated: 2/25/2026Edit on GitHub