Estimate reading time
Estimate the number of seconds it would take to read a range. We estimate it based on the average reading speed we have collected on quran.com.
Query Parameters
Possible values: Value must match regular expression ^(\d+:\d+-\d+:\d+(?:,\d+:\d+-\d+:\d+)*)$
a comma separated string of Ayah ranges e.g. 1:1-1:2
- 200
- 403
- 404
- 422
- 500
Request has been handled successfully.
Schema
data object
The number of seconds it would take on average to read the range of Ayahs.
{
"success": true,
"data": {
"seconds": 66.8
}
}
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"
}
}