# app.rocksky.scrobble.getScrobbles

> 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.scrobble.getScrobbles)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble.getScrobbles/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.scrobble.getScrobbles/examples)

## Definitions

### `app.rocksky.scrobble.getScrobbles`

**Type**: `query`

Get scrobbles all scrobbles

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (at-identifier) | No | The DID or handle of the actor |
| `limit` | `integer` | No | The maximum number of scrobbles to return |
| `offset` | `integer` | No | The offset for pagination |
| `following` | `boolean` | No | If true, only return scrobbles from actors the viewer is following. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `scrobbles` | `array` | No |  |

## Raw Schema

```json
{
  "id": "app.rocksky.scrobble.getScrobbles",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "properties": {
            "scrobbles": {
              "type": "array",
              "items": {
                "ref": "app.rocksky.scrobble.defs#scrobbleViewBasic",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "did": {
            "type": "string",
            "format": "at-identifier",
            "description": "The DID or handle of the actor"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "description": "The maximum number of scrobbles to return"
          },
          "offset": {
            "type": "integer",
            "minimum": 0,
            "description": "The offset for pagination"
          },
          "following": {
            "type": "boolean",
            "description": "If true, only return scrobbles from actors the viewer is following."
          }
        }
      },
      "description": "Get scrobbles all scrobbles"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
