# quest.sableye.magnet.getAuthorEntries

> Published by [matt.evil.gay](https://lexicon.garden/identity/did:plc:tas6hj2xjrqben5653v5kohk)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tas6hj2xjrqben5653v5kohk/quest.sableye.magnet.getAuthorEntries)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tas6hj2xjrqben5653v5kohk/quest.sableye.magnet.getAuthorEntries/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tas6hj2xjrqben5653v5kohk/quest.sableye.magnet.getAuthorEntries/examples)

## Definitions

### `quest.sableye.magnet.getAuthorEntries`

**Type**: `query`

Get magnet entries published by a specific author.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum number of results. |
| `author` | `string` (did) | Yes | The DID of the author. |
| `cursor` | `string` | No | Pagination cursor. |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "quest.sableye.magnet.getAuthorEntries",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "entries"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "entries": {
              "type": "array",
              "items": {
                "ref": "quest.sableye.magnet.listEntries#entryView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "author"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 25,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum number of results."
          },
          "author": {
            "type": "string",
            "format": "did",
            "description": "The DID of the author."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor."
          }
        }
      },
      "description": "Get magnet entries published by a specific author."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
