List backlinks to an eprint from ATProto ecosystem sources including Cosmik collections, Leaflet lists, Whitewind blogs, and Bluesky shares
Parameters
Output
application/jsonbacklinks
array
Required
List of backlinks
cursor
string
Optional
Pagination cursor for next page
hasMore
boolean
Required
Whether more results are available
Errors
NotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"backlinks",
"hasMore"
],
"properties": {
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
},
"backlinks": {
"type": "array",
"items": {
"ref": "#backlink",
"type": "ref"
},
"description": "List of backlinks"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"targetUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of backlinks to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"targetUri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the target eprint"
},
"sourceType": {
"type": "string",
"description": "Filter by source type",
"knownValues": [
"cosmik.collection",
"leaflet.list",
"whitewind.blog",
"bluesky.post",
"bluesky.embed",
"other"
]
}
}
},
"description": "List backlinks to an eprint from ATProto ecosystem sources including Cosmik collections, Leaflet lists, Whitewind blogs, and Bluesky shares"
}