a list of records linking to any record, identity, or uri
Parameters
Output
Encoding
application/jsoncursor
string
Optional
pagination cursor
records
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",
"records"
],
"properties": {
"total": {
"type": "integer",
"description": "total number of matching links"
},
"cursor": {
"type": "string",
"description": "pagination cursor"
},
"records": {
"type": "array",
"items": {
"ref": "#linkRecord",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject",
"source"
],
"properties": {
"did": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"description": "filter links to those from specific users"
},
"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 records linking to any record, identity, or uri"
}