# ink.branchline.listBlooms

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

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `ink.branchline.listBlooms`

**Type**: `query`

List active blooms: buds past the 24h growing window that are either still inside the 48h follow window or have never gained a child. Supports 'recent' (newest createdAt first) and 'pollen' (decay-weighted pollen score across the bloom and its ancestors).

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sort` | `string` | No | Sort order. 'recent' orders blooms by bud createdAt, newest first. 'pollen' ranks blooms by a pollen-weighted score: each grain of pollen on the bloom or any ancestor contributes with independent time and depth half-life decay, so both fresh tip-of-branch interest and steady deep-lineage accumulation rank well. |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No | Opaque pagination token returned by a prior call. |

#### Output

**Encoding**: `application/json`

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

### `ink.branchline.listBlooms#bloomView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `root` | `string` (at-uri) | Yes | The root AT-URI this bloom descends from. |
| `bloom` | `string` (at-uri) | Yes | The bloom AT-URI. |

## Raw Schema

```json
{
  "id": "ink.branchline.listBlooms",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "blooms"
          ],
          "properties": {
            "blooms": {
              "type": "array",
              "items": {
                "ref": "#bloomView",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string",
              "description": "Opaque pagination token for the next page. Absent when there are no more results."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "sort": {
            "type": "string",
            "default": "recent",
            "description": "Sort order. 'recent' orders blooms by bud createdAt, newest first. 'pollen' ranks blooms by a pollen-weighted score: each grain of pollen on the bloom or any ancestor contributes with independent time and depth half-life decay, so both fresh tip-of-branch interest and steady deep-lineage accumulation rank well.",
            "knownValues": [
              "recent",
              "pollen"
            ]
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string",
            "description": "Opaque pagination token returned by a prior call."
          }
        }
      },
      "description": "List active blooms: buds past the 24h growing window that are either still inside the 48h follow window or have never gained a child. Supports 'recent' (newest createdAt first) and 'pollen' (decay-weighted pollen score across the bloom and its ancestors)."
    },
    "bloomView": {
      "type": "object",
      "required": [
        "bloom",
        "root"
      ],
      "properties": {
        "root": {
          "type": "string",
          "format": "at-uri",
          "description": "The root AT-URI this bloom descends from."
        },
        "bloom": {
          "type": "string",
          "format": "at-uri",
          "description": "The bloom AT-URI."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
