# is.currents.actor.getProfile

> Published by [currents.is](https://lexicon.garden/identity/did:plc:jaur46k6ijyfvl4lojza7eic)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.actor.getProfile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.actor.getProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.actor.getProfile/examples)

## Definitions

### `is.currents.actor.getProfile`

**Type**: `query`

Get the detailed profile view of an actor by DID or handle.

#### Parameters

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

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `avatar` | `string` (uri) | No |  |
| `banner` | `string` (uri) | No |  |
| `handle` | `string` (handle) | Yes |  |
| `website` | `string` (uri) | No |  |
| `pronouns` | `string` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "is.currents.actor.getProfile",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "did",
            "handle"
          ],
          "properties": {
            "did": {
              "type": "string",
              "format": "did"
            },
            "avatar": {
              "type": "string",
              "format": "uri"
            },
            "banner": {
              "type": "string",
              "format": "uri"
            },
            "handle": {
              "type": "string",
              "format": "handle"
            },
            "website": {
              "type": "string",
              "format": "uri"
            },
            "pronouns": {
              "type": "string"
            },
            "createdAt": {
              "type": "string",
              "format": "datetime"
            },
            "description": {
              "type": "string"
            },
            "displayName": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier",
            "description": "DID or handle of the actor to fetch."
          }
        }
      },
      "description": "Get the detailed profile view of an actor by DID or handle."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
