a list of distinct dids with a specific records linking to a target at a specified path
Parameters
Output
Encoding
application/jsoncursor
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.
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"
}