# africa.kandake.asha.feed.getTimeline

> Published by [kandake.africa](https://lexicon.garden/identity/did:plc:lrphxvv25aibthe7xoc2eeyy)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.feed.getTimeline)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.feed.getTimeline/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.feed.getTimeline/examples)

## Definitions

### `africa.kandake.asha.feed.getTimeline`

**Type**: `query`

Get a timeline of recent recipes from accounts the user follows in the Asha network.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `recipes` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "africa.kandake.asha.feed.getTimeline",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "recipes"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "recipes": {
              "type": "array",
              "items": {
                "ref": "africa.kandake.asha.recipe.get#recipeView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "description": "Get a timeline of recent recipes from accounts the user follows in the Asha network."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
