UXUY Indexer
  • INTRODUCTION
    • 🎃Overview
    • 🤓Protocol Highlights
    • 📽️Feature Highlights
    • 🛣️Roadmap
  • 🌲INDEXS PROTOCOL
    • Recipes
    • Inscriptions RFC
    • Supported
    • Partner
    • Work Mechanism
      • Arch
      • INDS
    • Quick Start
    • Indexer
      • Get Started
      • Configuration
      • Running Indexer & API Server
      • API
      • Explorer
    • API Reference
      • About
      • API V1
        • Inscription.All
        • Inscription.Tick
        • Address.Transactions
        • Address.Balances
        • Address.Balance
        • Tick.Holders
        • Block.LastNumber
        • Tool.InscriptionTxOperate
        • Transaction.Info
      • API V1 Specification
      • API V2
        • Inds getTicks
        • Inds getTransactionByAddress
        • Inds getBalancesByAddress
        • Inds getHoldersByTick
        • Inds getLastBlockNumberIndexed
        • Inds getTickByCallData
        • Inds getTransactionByHash
        • Inds getTransactions
        • Inds getInscriptions
        • Inds getInscriptionTxOperate
        • Index getInscriptionByTick
        • Inds getAddressBalance
        • Inds getTickBriefs
        • Inds getAllChains
        • Inds search
      • API V2 Specification
    • Changelog
      • Version Alpha
    • Team
  • 🪄INDEXS FEATURES
    • Index
    • List
  • 🔐RISK & SECURITY
    • Credit Risk
  • 🌌ECOSYSTEM
    • Overview
  • 📚INDEXS GUIDES
    • Guides Overview
  • 🧙‍♂️FAQS
    • General
    • Resources
  • 💼WE'RE HIRING!
    • Open Positions
Powered by GitBook
On this page

Was this helpful?

  1. INDEXS PROTOCOL
  2. API Reference
  3. API V2

Inds getInscriptions

PreviousInds getTransactionsNextInds getInscriptionTxOperate

Last updated 1 year ago

Was this helpful?

Example Request

{
  "method": "inds_getInscriptions",
  "id": 1,
  "jsonrpc": "2.0",
  "params": [
    10,  // page limit 
    0,   // page offset
    "",  // chain 
    "",  // protocol
    "",  // tick 
    "",  // deploy_by
    3   // sort : 0.default  1.deploy time  2.mint process  3.holders amt  4.transaction amt
  ]
}

Example Response

{
    "jsonrpc": "2.0",
    "result": {
        "inscriptions": [
            {
                "chain": "btc",
                "protocol": "brc-20",
                "tick": "sats",
                "deploy_by": "bc1prtawdt82wfgrujx6d0heu0smxt4yykq440t447wan88csf3mc7csm3ulcn",
                "deploy_hash": "9b664bdd6f5ed80d8d88957b63364c41f3ad4efb8eee11366aa16435974d9333",
                "total_supply": "2100000000000000",
                "minted_percent": "1.0000",
                "limit_per_mint": "100000000",
                "holders": 1354607,
                "transfer_type": 0,
                "status": 2,
                "minted": "2100000000000000",
                "tx_cnt": 21192628,
                "created_at": 1707230059
            },
            ...
        ],
        "total": 96724,
        "limit": 10,
        "offset": 0
    },
    "id": 1
}

Curl Example

curl --location 'https://api.indexs.io/v2/rpc/inds_getInscriptions' \
--header 'Content-Type: application/json' \
--data '{
  "method": "inds_getInscriptions",
  "id": 1,
  "jsonrpc": "2.0",
  "params": [
    10,
    0,
    "eth",
    "",
    "",
    "",
    3
  ]
}'
🌲