Get "Linked by" list of a DID

Get “Linked by" list of a DID.

get

Retrieve the list of DIDs that are linking to the requested DID (followers). 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: slein
startintegerRequired

The starting index for the paginated results.

Default: 0Example: 0
limitintegerRequired

The number of items to retrieve per page.

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

Successful operation

{
  "code": 0,
  "data": {
    "list": [
      "gene",
      "ordinals"
    ],
    "total": 2
  }
}

Last updated