# com.atiproto.recipient.profile.get

> Published by [atiproto.com](https://lexicon.garden/identity/did:plc:4x5dcv6u4wlkjcssto7f22nu)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.recipient.profile.get)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.recipient.profile.get/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.recipient.profile.get/examples)

## Definitions

### `com.atiproto.recipient.profile.get`

**Type**: `query`

Get the authenticated user's profile settings. Returns defaults if no profile exists.

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | No | Profile record CID (absent if no profile configured) |
| `uri` | `string` (at-uri) | No | Profile record URI (absent if no profile configured) |
| `profile` | `ref` → `com.atiproto.profile#view` | Yes | The profile record data (defaults if not configured) |
| `hasProfile` | `boolean` | Yes | Whether the user has saved a profile record |
| `readyForPayment` | `boolean` | Yes | Whether the user's payment account is set up and enabled |

## Raw Schema

```json
{
  "id": "com.atiproto.recipient.profile.get",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "profile",
            "hasProfile",
            "readyForPayment"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid",
              "description": "Profile record CID (absent if no profile configured)"
            },
            "uri": {
              "type": "string",
              "format": "at-uri",
              "description": "Profile record URI (absent if no profile configured)"
            },
            "profile": {
              "ref": "com.atiproto.profile#view",
              "type": "ref",
              "description": "The profile record data (defaults if not configured)"
            },
            "hasProfile": {
              "type": "boolean",
              "description": "Whether the user has saved a profile record"
            },
            "readyForPayment": {
              "type": "boolean",
              "description": "Whether the user's payment account is set up and enabled"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Get the authenticated user's profile settings. Returns defaults if no profile exists."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
