# nk.branchline.listAuthorSeeds

> Published by [branchline.ink](https://lexicon.garden/identity/did:plc:brvu7akhdvsqcomb67pafw25)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:brvu7akhdvsqcomb67pafw25/nk.branchline.listAuthorSeeds)
- [Documentation](https://lexicon.garden/lexicon/did:plc:brvu7akhdvsqcomb67pafw25/nk.branchline.listAuthorSeeds/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:brvu7akhdvsqcomb67pafw25/nk.branchline.listAuthorSeeds/examples)

## Definitions

### `nk.branchline.listAuthorSeeds`

**Type**: `query`

List seeds that an author can trade or plant

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` (did) | Yes | DID of the author whose buds to list. |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No | Opaque pagination token returned by a prior call. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `seeds` | `array` | Yes |  |
| `cursor` | `string` | No | Opaque pagination token for the next page. Absent when there are no more results. |

## Raw Schema

```json
{
  "id": "ink.branchline.listAuthorSeeds",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "seeds"
          ],
          "properties": {
            "seeds": {
              "type": "array",
              "items": {
                "type": "string",
                "format": "at-uri"
              }
            },
            "cursor": {
              "type": "string",
              "description": "Opaque pagination token for the next page. Absent when there are no more results."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "did",
            "description": "DID of the author whose buds 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 seeds that an author can trade or plant"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
