Saturn Documentation
Launch App
  • Saturn
  • Traders
    • Trading in Saturn
    • How to Swap
    • How Saturn Protects Your Trades from MEV Risks
  • Liquidity Providers
    • Open a position in a Liquidity Pool
    • Managing your Portfolio on Saturn
  • Token Creators
    • How to Create a Pool on Saturn
  • Builders
    • Saturn API
      • Pool API
        • Initialize pool
        • Add Shards
        • Open position
        • Increase Liquidity
        • Remove Liquidity
        • Swap
        • Swap Quotes
        • Boost Transaction
        • Wallet
      • Indexer API
        • Collections
        • Pools
        • Prices
        • Positions
        • Transactions
        • Charts
        • Stats
    • Liquidity Pool SDK
  • Saturn V1
    • Overview
    • How-To-Links
      • Setting up Trading Account
        • Withdrawing from Trading account
      • Swap
      • Orderbook
        • Your Profile
          • Trade History
        • How to place a sell order
        • How to place a buy order
        • Positions
      • Collect
      • Charts
      • Tutorial videos
        • Setting up a Trading Account (v3) and preparing for Rings Airdrops
        • Trading on Saturn
    • FAQs
      • What are Satoshi's, Rare SATs, and Rings?
        • More on Rare SATs
      • What is a UTXO
      • What is a PSBT
      • Why are there batch sizes?
      • Compatible Wallets
      • Why is my Available balance different than my Total balance?
Powered by GitBook
On this page
  1. Builders
  2. Saturn API
  3. Indexer API

Stats

PreviousChartsNextLiquidity Pool SDK

Last updated 27 days ago

get

Fetches the rune collection with the biggest volume of trades

Responses
200
Rune collection with stats
application/json
404
No collections found
get
GET /stats/most-traded HTTP/1.1
Host: 127.0.0.1:3000
Accept: */*
{
  "token0": {
    "id": "1234:5678",
    "name": "text",
    "displayName": "text",
    "symbol": null,
    "divisibility": 1,
    "batchSize": 1,
    "supply": "text",
    "createdAt": "2025-05-20T12:38:01.572Z",
    "updatedAt": "2025-05-20T12:38:01.572Z",
    "type": "btc"
  },
  "token1": {
    "id": "1234:5678",
    "name": "text",
    "displayName": "text",
    "symbol": null,
    "divisibility": 1,
    "batchSize": 1,
    "supply": "text",
    "createdAt": "2025-05-20T12:38:01.572Z",
    "updatedAt": "2025-05-20T12:38:01.572Z",
    "type": "btc"
  },
  "current_price": "text",
  "stats_per_period": [
    {
      "period": "Day",
      "total_volume": "text",
      "transactions": 1,
      "fee_token0": "text",
      "fee_token1": "text",
      "price_change": {
        "percentage": 1,
        "absolute": 1
      },
      "high_price": "text",
      "low_price": "text"
    }
  ]
}