# app.rocksky.feed.getStories

> Published by [rocksky.app](https://lexicon.garden/identity/did:plc:vegqomyce4ssoqs7zwqvgqty)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getStories)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getStories/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.feed.getStories/examples)

## Definitions

### `app.rocksky.feed.getStories`

**Type**: `query`

Get all currently playing tracks by users

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feed` | `string` (at-uri) | No | The feed URI to filter stories by. |
| `size` | `integer` | No | The maximum number of stories to return. |
| `following` | `boolean` | No | If true, only return stories from users the viewer follows. Requires authentication. |

#### Output

**Encoding**: `application/json`

## Raw Schema

```json
{
  "id": "app.rocksky.feed.getStories",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "ref": "app.rocksky.feed.defs#storiesView",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "feed": {
            "type": "string",
            "format": "at-uri",
            "description": "The feed URI to filter stories by."
          },
          "size": {
            "type": "integer",
            "minimum": 1,
            "description": "The maximum number of stories to return."
          },
          "following": {
            "type": "boolean",
            "description": "If true, only return stories from users the viewer follows. Requires authentication."
          }
        }
      },
      "description": "Get all currently playing tracks by users"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
