# net.atpix.gallery.listFeedPhotos

> Published by [lexicon.atpix.net](https://lexicon.garden/identity/did:plc:x4crpdfko2d7xrcd5eovpwex)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:x4crpdfko2d7xrcd5eovpwex/net.atpix.gallery.listFeedPhotos)
- [Documentation](https://lexicon.garden/lexicon/did:plc:x4crpdfko2d7xrcd5eovpwex/net.atpix.gallery.listFeedPhotos/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:x4crpdfko2d7xrcd5eovpwex/net.atpix.gallery.listFeedPhotos/examples)

## Definitions

### `net.atpix.gallery.listFeedPhotos`

**Type**: `query`

Social gallery feed from active collectionRules (follow graph + hashtags). Requires authenticated caller for follow graph resolution.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `ruleUri` | `string` (at-uri) | No |  |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "net.atpix.gallery.listFeedPhotos",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "photos"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "photos": {
              "type": "array",
              "items": {
                "ref": "net.atpix.gallery.defs#photoView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "ruleUri": {
            "type": "string",
            "format": "at-uri"
          }
        }
      },
      "description": "Social gallery feed from active collectionRules (follow graph + hashtags). Requires authenticated caller for follow graph resolution."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
