# dev.sylfr.feed.getPosts

> Published by [sylfr.dev](https://lexicon.garden/identity/did:plc:nrri2qphzxtjdnptjrpvg4wn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.feed.getPosts)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.feed.getPosts/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.feed.getPosts/examples)

## Definitions

### `dev.sylfr.feed.getPosts`

**Type**: `query`

Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. Mirror of `app.bsky.feed.getPosts`.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uris` | `array` | Yes | List of post AT-URIs to return hydrated views for. |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "dev.sylfr.feed.getPosts",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "posts"
          ],
          "properties": {
            "posts": {
              "type": "array",
              "items": {
                "ref": "app.bsky.feed.defs#postView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uris"
        ],
        "properties": {
          "uris": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 25,
            "description": "List of post AT-URIs to return hydrated views for."
          }
        }
      },
      "description": "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'. Mirror of `app.bsky.feed.getPosts`."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
