# app.rocksky.artist.getArtistRecentListeners

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

## Definitions

### `app.rocksky.artist.getArtistRecentListeners`

**Type**: `query`

Get artist recent listeners ordered by most recent scrobble

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | The URI of the artist to retrieve recent listeners from |
| `limit` | `integer` | No | Maximum number of results to return |
| `offset` | `integer` | No | Number of items to skip before returning results |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "app.rocksky.artist.getArtistRecentListeners",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "properties": {
            "listeners": {
              "type": "array",
              "items": {
                "ref": "app.rocksky.artist.defs#recentListenerView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri",
            "description": "The URI of the artist to retrieve recent listeners from"
          },
          "limit": {
            "type": "integer",
            "description": "Maximum number of results to return"
          },
          "offset": {
            "type": "integer",
            "description": "Number of items to skip before returning results"
          }
        }
      },
      "description": "Get artist recent listeners ordered by most recent scrobble"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
