Get a creator profile by DID.
Parameters
Output
Encoding
application/jsonErrors
InvalidRequest
Invalid DID format. ProfileNotFound
No profile found for the given DID. Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidRequest",
"description": "Invalid DID format."
},
{
"name": "ProfileNotFound",
"description": "No profile found for the given DID."
}
],
"output": {
"schema": {
"ref": "com.atprotofans.hydratedProfile",
"type": "ref"
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "did",
"description": "DID of the subject to get the profile for."
}
}
},
"description": "Get a creator profile by DID."
}