get_full_surah
Retrieve complete Quran chapters with all verses. Optionally include English translations to read full surah content for study or reference.
Instructions
Get all verses of a complete Surah (chapter). Can include translations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| surah | Yes | Surah number (1-114) | |
| include_translation | No | Whether to include English translation (default: false) | |
| translation | No | Translation to use if include_translation is true (default: en.asad) | en.asad |
Input Schema (JSON Schema)
{
"properties": {
"include_translation": {
"default": false,
"description": "Whether to include English translation (default: false)",
"type": "boolean"
},
"surah": {
"description": "Surah number (1-114)",
"maximum": 114,
"minimum": 1,
"type": "number"
},
"translation": {
"default": "en.asad",
"description": "Translation to use if include_translation is true (default: en.asad)",
"type": "string"
}
},
"required": [
"surah"
],
"type": "object"
}