search
Find specific terms in the Quran by entering a search query, adjusting results per page, and selecting a language. Use pagination to navigate through results efficiently.
Instructions
Search the Quran for specific terms
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ISO code of language, use this query params if you want to boost translations for specific language. | |
page | No | Page number, well for pagination. You can use *p* as well | |
q | Yes | Search query, you can use *query* as well | |
size | No | Results per page. *s* is also valid parameter. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"description": "ISO code of language, use this query params if you want to boost translations for specific language.",
"type": "string"
},
"page": {
"description": "Page number, well for pagination. You can use *p* as well",
"type": "string"
},
"q": {
"description": "Search query, you can use *query* as well",
"type": "string"
},
"size": {
"description": "Results per page. *s* is also valid parameter.",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}