Look up public profile information for any user
Parameters
Output
Encoding
application/jsondid
stringdid
Required
User's DID
profile
refcom.atiproto.profile#view
Required
Public profile data
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",
"profile"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "User's DID"
},
"profile": {
"ref": "com.atiproto.profile#view",
"type": "ref",
"description": "Public profile data"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the user to look up"
}
}
},
"description": "Look up public profile information for any user"
}