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
Output
application/jsoncursor
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.
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."
}