get_quran_verse
Retrieve Quran verses with Arabic text and English translation by specifying surah and ayah numbers. Access multiple translation options to study Islamic scripture directly.
Instructions
Get a Quran verse with both Arabic text and English translation. Returns the specified verse from the Quran.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| surah | Yes | Surah number (1-114) | |
| ayah | Yes | Ayah (verse) number within the surah | |
| translation | No | Translation to use (default: en.asad). Options: en.asad, en.sahih, en.pickthall, en.yusufali, en.hilali | en.asad |
Input Schema (JSON Schema)
{
"properties": {
"ayah": {
"description": "Ayah (verse) number within the surah",
"minimum": 1,
"type": "number"
},
"surah": {
"description": "Surah number (1-114)",
"maximum": 114,
"minimum": 1,
"type": "number"
},
"translation": {
"default": "en.asad",
"description": "Translation to use (default: en.asad). Options: en.asad, en.sahih, en.pickthall, en.yusufali, en.hilali",
"type": "string"
}
},
"required": [
"surah",
"ayah"
],
"type": "object"
}