ink.branchline.listAuthorPlantings

branchline.ink

Documentation

List trees planted by an author. A planting is a root bud (depth 0) authored by `actor`; each entry reports the root AT-URI and the height of the tallest branch descended from it.

main query

List trees planted by an author. A planting is a root bud (depth 0) authored by `actor`; each entry reports the root AT-URI and the height of the tallest branch descended from it.

Parameters

actor string did Required

DID of the author whose plantings to list.

cursor string Optional

Opaque pagination token returned by a prior call.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

Opaque pagination token for the next page. Absent when there are no more results.

plantings array Required

No description available.

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
DID of the author whose plantings to list.
Opaque pagination token returned by a prior call.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "plantings"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Opaque pagination token for the next page. Absent when there are no more results."
        },
        "plantings": {
          "type": "array",
          "items": {
            "ref": "#plantingView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "did",
        "description": "DID of the author whose plantings to list."
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "description": "Opaque pagination token returned by a prior call."
      }
    }
  },
  "description": "List trees planted by an author. A planting is a root bud (depth 0) authored by `actor`; each entry reports the root AT-URI and the height of the tallest branch descended from it."
}
plantingView object

No description available.

Properties

root string at-uri Required

AT-URI of the root bud the author planted.

treeHeight integer Required

Length of the longest root-to-leaf path in this tree (1 when the root has no children).

minimum: 1
View raw schema
{
  "type": "object",
  "required": [
    "root",
    "treeHeight"
  ],
  "properties": {
    "root": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the root bud the author planted."
    },
    "treeHeight": {
      "type": "integer",
      "minimum": 1,
      "description": "Length of the longest root-to-leaf path in this tree (1 when the root has no children)."
    }
  }
}

Lexicon Garden

@