# social.colibri.beta.actor.getProfile

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.getProfile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.getProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.getProfile/examples)

## Definitions

### `social.colibri.beta.actor.getProfile`

**Type**: `query`

Gets a user's profile.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` (at-identifier) | Yes | The user's DID or handle. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `profile` | `ref` → `social.colibri.beta.actor.defs#profileView` | Yes | The user's profile. |

#### Errors

- **AuthRequired**: The request has no valid service auth.
- **ActorNotFound**: No user matches the given DID or handle.

## Raw Schema

```json
{
  "id": "social.colibri.beta.actor.getProfile",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "AuthRequired",
          "description": "The request has no valid service auth."
        },
        {
          "name": "ActorNotFound",
          "description": "No user matches the given DID or handle."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "profile"
          ],
          "properties": {
            "profile": {
              "ref": "social.colibri.beta.actor.defs#profileView",
              "type": "ref",
              "description": "The user's profile."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier",
            "description": "The user's DID or handle."
          }
        }
      },
      "description": "Gets a user's profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
