# is.currents.feed.getSaves

> Published by [currents.is](https://lexicon.garden/identity/did:plc:jaur46k6ijyfvl4lojza7eic)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.getSaves)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.getSaves/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.getSaves/examples)

## Definitions

### `is.currents.feed.getSaves`

**Type**: `query`

Hydrate a list of saves by their AT-URIs. Auth is optional; if provided, viewer-specific state is included in the returned save views. Missing URIs are omitted from the output.

#### Parameters

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

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "is.currents.feed.getSaves",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "saves"
          ],
          "properties": {
            "saves": {
              "type": "array",
              "items": {
                "ref": "is.currents.feed.defs#saveView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uris"
        ],
        "properties": {
          "uris": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 25,
            "minLength": 1
          }
        }
      },
      "description": "Hydrate a list of saves by their AT-URIs. Auth is optional; if provided, viewer-specific state is included in the returned save views. Missing URIs are omitted from the output."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
