blue.microcosm.links.getBacklinkDids

microcosm.blue

Documentation

a list of distinct dids with a specific records linking to a target at a specified path

main query

a list of distinct dids with a specific records linking to a target at a specified path

Parameters

limit integer Optional

number of results to return

source string Required

collection and path specification (e.g., 'app.bsky.feed.like:subject.uri')

subject string uri Required

the target being linked to (at-uri, did, or uri)

Output

Encodingapplication/json
cursor string Optional

pagination cursor

linking_dids array Required

No description available.

total integer Required

total number of matching links

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
number of results to return
collection and path specification (e.g., 'app.bsky.feed.like:subject.uri')
the target being linked to (at-uri, did, or uri)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "total",
        "linking_dids"
      ],
      "properties": {
        "total": {
          "type": "integer",
          "description": "total number of matching links"
        },
        "cursor": {
          "type": "string",
          "description": "pagination cursor"
        },
        "linking_dids": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "did"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subject",
      "source"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 16,
        "maximum": 100,
        "minimum": 1,
        "description": "number of results to return"
      },
      "source": {
        "type": "string",
        "description": "collection and path specification (e.g., 'app.bsky.feed.like:subject.uri')"
      },
      "subject": {
        "type": "string",
        "format": "uri",
        "description": "the target being linked to (at-uri, did, or uri)"
      }
    }
  },
  "description": "a list of distinct dids with a specific records linking to a target at a specified path"
}

Lexicon Garden

@