Fixes World
Github
  • 💡What is Fixes?
  • 📓Concepts
    • 🔡Fixes Inscription
    • 💹Fixes Coins
      • Guide 1: How to Launch a new Coin?
    • 🎟️Lottery Game
    • 👻𝔉rc20s
    • 📔Token List
      • 📘Query TokenList
      • 📙Query Reviewers
  • 👨‍💻Developer
    • On-chain Interactions
      • 🔯𝔉rc20
        • Deploy - tx
        • Mint(batch) - tx
        • Transfer - tx
        • Burn - tx
        • List for Sale - tx
        • Take list as buyer - tx
        • List for Purchase - tx
        • Take list as seller - tx
        • Cancel Listing - tx
      • 🔡Fixes Inscription
        • EstimateCost - read
    • Open API Service
      • 🔯𝔉rc20 Basics
        • Query 𝔉rc20 Tokens
        • Fetch 𝔉rc20 Token Info
        • Check 𝔉rc20 registered
        • Get 𝔉rc20 balances
        • Get 𝔉rc20 balance
      • 🛒𝔉rc20 Marketplace
        • Query all 𝔉rc20 Markets
        • Fetch 𝔉rc20 Market detailed info
        • Check 𝔉rc20 Market enabled
        • Query 𝔉rc20 Listings
        • Query Market Trading History
        • Query Address Trading History
      • 🔧Utilities
        • Estimate Fixes inscribing cost
        • Get current $FLOW price
      • 📃Legal Disclaimer
  • 🔗LINKS
    • Official Website
    • Linktree
Powered by GitBook
On this page
Edit on GitHub
  1. Developer
  2. Open API Service
  3. 𝔉rc20 Basics

Fetch 𝔉rc20 Token Info

Get the token info of a 𝔉rc20 FT

GET http://open-api.fixes.world/v1/frc20/:tick

Path Parameters

Name
Type
Description

tick*

String

The ticker name of 𝔉rc20 Token

Headers

Name
Type
Description

Authorization*

String

Bearer YOUR_API_KEY

{
    "tick": "flows",
    "max": 21000000,
    "limit": 100,
    "deployedAt": 1703304138,
    "deployer": "0xa2de93114bae3e73",
    "burnable": false,
    "supplied": 21000000,
    "burned": 0,
    "holders": 2054,
    "poolBalance": 21198.97441412,
    "stakable": true,
    "stakingAddr": "0x17c758477024fa07",
    "marketEnabled": true,
    "isVerified": true
}

PreviousQuery 𝔉rc20 TokensNextCheck 𝔉rc20 registered

Last updated 1 year ago

👨‍💻
🔯