# fm.teal.feed.getActorFeed

> Published by [teal.fm](https://lexicon.garden/identity/did:plc:iwhuynr6mm6xxuh25o4do2tx)

✓ This is the authoritative definition for this NSID.

## Description

This lexicon is in a not officially released state. It is subject to change. | Retrieves multiple plays from the index or via an author's DID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.feed.getActorFeed)
- [Documentation](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.feed.getActorFeed/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.feed.getActorFeed/examples)

## Definitions

### `fm.teal.feed.getActorFeed`

**Type**: `query`

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | The upper limit of tracks to get per request. Default is 20, max is 50. |
| `cursor` | `string` | No | The cursor to start the query from |
| `authorDID` | `string` (did) | Yes | The author's DID for the play |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `plays` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "fm.teal.feed.getActorFeed",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "plays"
          ],
          "properties": {
            "plays": {
              "type": "array",
              "items": {
                "ref": "fm.teal.feed.defs#playView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "authorDID"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "description": "The upper limit of tracks to get per request. Default is 20, max is 50."
          },
          "cursor": {
            "type": "string",
            "description": "The cursor to start the query from"
          },
          "authorDID": {
            "type": "string",
            "format": "did",
            "description": "The author's DID for the play"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "This lexicon is in a not officially released state. It is subject to change. | Retrieves multiple plays from the index or via an author's DID."
}
```
