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 getTickBriefs

PreviousInds getAddressBalanceNextInds getAllChains

Last updated 1 year ago

Was this helpful?

Example Request

{
 "method": "inds_getTickBriefs", // jsonrpc method name
 "id": 1, // request id
  "jsonrpc": "2.0", // jsonrpc version
  "params": [
    [
      {
        "chain": "avalanche",  // chain 
        "deploy_hash": "0x7ffc56b2bf20f4f3474c1fd503fc3f1fb9066c8b0665d6da11185cac892108a5"  // ```postman_json
deploy_hash
```
      }
    ]
  ]
}

Example Response

{
    "jsonrpc": "2.0",
    "result": {
        "inscriptions": [
            {
                "id": 0,
                "chain": "avalanche",
                "protocol": "asc-20",
                "tick": "avas",
                "name": "avas",
                "limit_per_mint": "1000",
                "deploy_by": "0xE0eCCFe34c367Cbe0b6B261011b6781229942552",
                "total_supply": "21000000",
                "deploy_hash": "0x7ffc56b2bf20f4f3474c1fd503fc3f1fb9066c8b0665d6da11185cac892108a5",
                "deploy_time": "2023-06-28T16:17:05Z",
                "transfer_type": 0,
                "created_at": "2024-01-15T09:37:29Z",
                "updated_at": "0001-01-01T00:00:00Z",
                "decimals": 0,
                "holders": 5195,
                "minted": "21000000",
                "tx_cnt": 54446,
                "progress": "0"
            }
        ]
    },
    "id": 1
}

Curl Example

curl --location 'https://api.indexs.io/v2/rpc/inds_getTickBriefs' \
--header 'Content-Type: application/json' \
--data '{
  "method": "inds_getTickBriefs",
  "id": 1,
  "jsonrpc": "2.0",
  "params": [
    [
      {
        "chain": "avalanche",
        "deploy_hash": "0x7ffc56b2bf20f4f3474c1fd503fc3f1fb9066c8b0665d6da11185cac892108a5"
      }
    ]
  ]
}'
🌲