Get a user's comments for their profile page.
Parameters
Output
Encoding
application/jsoncomments
array
Required
No description available.
cursor
string
Optional
No description available.
Errors
NotFound
Actor not found Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "Actor not found"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"comments"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 500
},
"comments": {
"type": "array",
"items": {
"ref": "social.coves.community.comment.defs#commentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "DID or handle of the user"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 500
},
"community": {
"type": "string",
"format": "at-identifier",
"description": "Filter to comments in a specific community"
}
}
},
"description": "Get a user's comments for their profile page."
}