# cafe.dummy.lsky.getProfile

> Published by [lsky-publisher.dummy.to](https://lexicon.garden/identity/did:plc:yuilafccwsaj7a4qkkzhttdn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.getProfile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.getProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:yuilafccwsaj7a4qkkzhttdn/cafe.dummy.lsky.getProfile/examples)

## Definitions

### `cafe.dummy.lsky.getProfile`

**Type**: `query`

Get a person's full profile by DID or handle.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` | Yes | DID or handle of the person. |

#### Output

**Encoding**: `application/json`

#### Errors

- **PersonNotFound**

## Raw Schema

```json
{
  "id": "cafe.dummy.lsky.getProfile",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "PersonNotFound"
        }
      ],
      "output": {
        "schema": {
          "ref": "cafe.dummy.lsky.defs#profileView",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "description": "DID or handle of the person."
          }
        }
      },
      "description": "Get a person's full profile by DID or handle."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
