# is.currents.feed.getFeed

> 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.getFeed)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.getFeed/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.getFeed/examples)

## Definitions

### `is.currents.feed.getFeed`

**Type**: `query`

Get a ranked feed of saves from across the network. Auth is optional; if provided, viewer-specific state is included. The personalized flag is only effective for authenticated requests.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `excludeSaved` | `boolean` | No | If true and the request is authenticated, exclude saves the viewer has already saved (matched by blob CID). Ignored for unauthenticated requests. |
| `personalized` | `string` | No | A signed decimal string between -1 and 1 controlling feed tuning. Negative values increase serendipity, positive values increase personalization, and 0 gives the global feed. Only effective for authenticated requests; ignored otherwise. |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "is.currents.feed.getFeed",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "feed"
          ],
          "properties": {
            "feed": {
              "type": "array",
              "items": {
                "ref": "is.currents.feed.defs#saveView",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "excludeSaved": {
            "type": "boolean",
            "default": false,
            "description": "If true and the request is authenticated, exclude saves the viewer has already saved (matched by blob CID). Ignored for unauthenticated requests."
          },
          "personalized": {
            "type": "string",
            "default": "0",
            "description": "A signed decimal string between -1 and 1 controlling feed tuning. Negative values increase serendipity, positive values increase personalization, and 0 gives the global feed. Only effective for authenticated requests; ignored otherwise."
          }
        }
      },
      "description": "Get a ranked feed of saves from across the network. Auth is optional; if provided, viewer-specific state is included. The personalized flag is only effective for authenticated requests."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
