pub.chive.backlink.list

chive.pub

Documentation

List backlinks to an eprint from ATProto ecosystem sources including Cosmik collections, Leaflet lists, Whitewind blogs, and Bluesky shares

main query

List backlinks to an eprint from ATProto ecosystem sources including Cosmik collections, Leaflet lists, Whitewind blogs, and Bluesky shares

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Maximum number of backlinks to return

sourceType string Optional

Filter by source type

targetUri string at-uri Required

AT-URI of the target eprint

Output

Encodingapplication/json
backlinks 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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Pagination cursor
Maximum number of backlinks to return
Filter by source type
AT-URI of the target eprint
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"
}
backlink object

Backlink record

Properties

context string Optional

Optional context about the backlink

maxLength: 500 bytes
deleted boolean Required

Whether the backlink has been deleted

id integer Required

Backlink ID

indexedAt string datetime Required

Timestamp when the backlink was indexed

sourceType string Required

Type of the source record

Known values: cosmik.collection, leaflet.list, whitewind.blog, bluesky.post, bluesky.embed, other
sourceUri string at-uri Required

AT-URI of the source record

targetUri string at-uri Required

AT-URI of the target eprint

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "sourceUri",
    "sourceType",
    "targetUri",
    "indexedAt",
    "deleted"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Backlink ID"
    },
    "context": {
      "type": "string",
      "maxLength": 500,
      "description": "Optional context about the backlink"
    },
    "deleted": {
      "type": "boolean",
      "description": "Whether the backlink has been deleted"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp when the backlink was indexed"
    },
    "sourceUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the source record"
    },
    "targetUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the target eprint"
    },
    "sourceType": {
      "type": "string",
      "description": "Type of the source record",
      "knownValues": [
        "cosmik.collection",
        "leaflet.list",
        "whitewind.blog",
        "bluesky.post",
        "bluesky.embed",
        "other"
      ]
    }
  },
  "description": "Backlink record"
}

Lexicon Garden

@