get_surah_info
Retrieve detailed information about Quran chapters including name, verse count, and revelation type by specifying the surah number.
Instructions
Get information about a Surah (chapter) including name, number of verses, and revelation type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| surah | Yes | Surah number (1-114) |
Input Schema (JSON Schema)
{
"properties": {
"surah": {
"description": "Surah number (1-114)",
"maximum": 114,
"minimum": 1,
"type": "number"
}
},
"required": [
"surah"
],
"type": "object"
}