Get the detailed profile view of an actor by DID or handle.
Parameters
Output
Encoding
application/jsonavatar
stringuri
Optional
A valid URI.
banner
stringuri
Optional
A valid URI.
createdAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
did
stringdid
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
handle
stringhandle
Required
An AT Protocol handle (e.g., alice.bsky.social).
pronouns
string
Optional
No description available.
website
stringuri
Optional
A valid URI.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"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."
}