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. Social Graph

Get "Link to" List of a DID

PreviousGet associated TLD of a DIDNextGet "Linked by" list of a DID

Last updated 9 months ago

Get “Link to" list of a DID.

get

Retrieve the list of DIDs that are linked by the requested DID (following). This data will be consistent with the latest block height a short time after the block has been confirmed.

Query parameters
didstringRequired

The DID name to query.

Example: gene
startintegerOptional

The starting index for the paginated results.

Default: 0Example: 0
limitintegerOptional

The number of items to retrieve per page.

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

Successful operation

{
  "code": 0,
  "data": {
    "list": [
      "slein",
      "rain"
    ],
    "total": 2
  }
}