B137
Mint DIDProfile
  • General
    • Infographic
    • B137 Protocol
    • Why Composable DID?
    • Use Cases
    • Tokenomics
  • User Guide
    • Minting Soul Dust (DID)
    • Deploying Inscription Book (TLD)
    • Joining Community (Bind)
  • Advanced
    • Introduction
    • Core Concept
    • Operations
    • Batch
  • Integration
    • Introduction
    • API
      • Resolution
        • Get wallet address (forward resolution)
        • Get DID name (reverse resolution)
        • Get DID Details
        • Get TLD Details
      • Social Graph
        • Get Primary DID name
        • Get associated TLD of a DID
        • Get "Link to" List of a DID
        • Get "Linked by" list of a DID
        • Get Twitter handle of an address
      • Marketplace (unavailable)
      • Social Assets Management (unavailable)
    • Indexer
  • Links
    • Website
    • Discord
    • Medium
    • Twitter
Powered by GitBook
On this page
  1. Integration
  2. API
  3. Resolution

Get TLD Details

PreviousGet DID DetailsNextSocial Graph

Last updated 9 months ago

Check inscription info of a TLD.

get

Retrieve and return all on-chain inscription information for a specific TLD name.

Query parameters
didstringRequired

The tld name to query.

Example: b137
Responses
200
Successful operation
application/json
get
GET /v1/getTldDetail HTTP/1.1
Host: open-api.b137.io
Accept: */*
200

Successful operation

{
  "code": 0,
  "data": [
    {
      "owner": "bc1ps96500phcr0y83ysfsfe2qt25few7rp6k5thn8kcmt9ap4zfa8pqu6aqkt",
      "inscriptionId": "2e4cd8f6a235300a4d9d4d1a292d8c9c4ee87388a9b4d96d6a6ca870a1151955i0",
      "genesisBlock": 840359
    }
  ]
}