Get a profile's info. Does not require authentication.
Parameters
Output
Encoding
application/jsonactivity
array
Required
The user's activity
books
array
Required
All books in the user's library
friendActivity
array
Required
The user's friend activity
profile
refbuzz.bookhive.defs#profile
Required
The user's profile
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": [
"books",
"profile",
"activity",
"friendActivity"
],
"properties": {
"books": {
"type": "array",
"items": {
"ref": "buzz.bookhive.defs#userBook",
"type": "ref"
},
"description": "All books in the user's library"
},
"profile": {
"ref": "buzz.bookhive.defs#profile",
"type": "ref",
"description": "The user's profile"
},
"activity": {
"type": "array",
"items": {
"ref": "buzz.bookhive.defs#activity",
"type": "ref"
},
"description": "The user's activity"
},
"friendActivity": {
"type": "array",
"items": {
"ref": "buzz.bookhive.defs#userBook",
"type": "ref"
},
"description": "The user's friend activity"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"did": {
"type": "string",
"description": "The user's DID to get the profile of"
},
"handle": {
"type": "string",
"description": "The user's handle to get the profile of"
}
}
},
"description": "Get a profile's info. Does not require authentication."
}