Get notes count within verse range
Get the count of notes within a range of verses.
Query Parameters
Possible values: Value must match regular expression ^(\d+):(\d+)$
The starting verse key of the range.
Possible values: Value must match regular expression ^(\d+):(\d+)$
The ending verse key of the range.
- 200
- 403
- 404
- 422
- 500
Request has been handled successfully.
Schema
data object
A map of verse keys to note counts, where each key is a verse key and each value is an integer count of notes.
{
"success": true,
"data": {
"1:2": 5,
"1:3": 1,
"1:4": 1
}
}
Forbidden error. Can either be due to access token not being passed, having been expired or the caller trying to access a resource without enough permissions.
Schema
error object
{
"success": false,
"error": {
"code": "ForbiddenError",
"message": "Token expired"
}
}
Not Found. The resource being accessed does not exist.
Schema
error object
{
"success": false,
"error": {
"code": "NotFoundError",
"message": "The resource you're looking for does not exist"
}
}
Validation Error. The request includes one or more invalid params. Please check the request params and try again.
Schema
error object
{
"success": false,
"error": {
"code": "ValidationError",
"message": "`id` is required"
}
}
Server Error. Something went wrong, try again later.
Schema
error object
{
"success": false,
"error": {
"code": "ServerError",
"message": "Something went wrong"
}
}