# so.sprk.actor.getProfile

> Published by [sprk.so](https://lexicon.garden/identity/did:plc:cveom2iroj3mt747sd4qqnr2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.actor.getProfile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.actor.getProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cveom2iroj3mt747sd4qqnr2/so.sprk.actor.getProfile/examples)

## Definitions

### `so.sprk.actor.getProfile`

**Type**: `query`

Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` (at-identifier) | Yes | Handle or DID of account to fetch profile of. |

#### Output

**Encoding**: `application/json`

## Raw Schema

```json
{
  "id": "so.sprk.actor.getProfile",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "ref": "so.sprk.actor.defs#profileViewDetailed",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier",
            "description": "Handle or DID of account to fetch profile of."
          }
        }
      },
      "description": "Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
