List reviews created by a specific author with optional filtering
Parameters
cursor
string
Optional
Pagination cursor for next page
inlineOnly
boolean
Optional
Only include inline annotations with text span targets
limit
integer
Optional
Maximum number of results to return
motivation
string
Optional
Filter by W3C Web Annotation motivation
reviewerDid
string
did
Required
DID of the reviewer
Output
application/jsoncursor
string
Optional
Cursor for next page
hasMore
boolean
Required
Whether more results are available
reviews
array
Required
List of reviews by the author
total
integer
Optional
Total number of reviews by this author
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"reviews",
"hasMore"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of reviews by this author"
},
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
},
"reviews": {
"type": "array",
"items": {
"ref": "#reviewView",
"type": "ref"
},
"description": "List of reviews by the author"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"reviewerDid"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"inlineOnly": {
"type": "boolean",
"default": false,
"description": "Only include inline annotations with text span targets"
},
"motivation": {
"type": "string",
"description": "Filter by W3C Web Annotation motivation",
"knownValues": [
"commenting",
"highlighting",
"questioning",
"replying",
"assessing",
"bookmarking",
"classifying",
"describing",
"editing",
"linking",
"moderating",
"tagging"
]
},
"reviewerDid": {
"type": "string",
"format": "did",
"description": "DID of the reviewer"
}
}
},
"description": "List reviews created by a specific author with optional filtering"
}