get_hadith
Retrieve specific Hadiths from authenticated collections including Bukhari, Muslim, and others by providing collection name and hadith number for Islamic study and reference.
Instructions
Get a specific Hadith from a collection. Hadiths are sayings and actions of Prophet Muhammad (peace be upon him).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | Yes | Hadith collection name. Options: bukhari, muslim, abudawud, tirmidhi, nasai, ibnmajah | |
| hadith_number | Yes | Hadith number within the collection |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Hadith collection name. Options: bukhari, muslim, abudawud, tirmidhi, nasai, ibnmajah",
"enum": [
"bukhari",
"muslim",
"abudawud",
"tirmidhi",
"nasai",
"ibnmajah"
],
"type": "string"
},
"hadith_number": {
"description": "Hadith number within the collection",
"minimum": 1,
"type": "number"
}
},
"required": [
"collection",
"hadith_number"
],
"type": "object"
}