GET /api/book-categories
Get all book categories.
GET /api/book-categories/{id}
Get a specific book category by ID.
GET /api/books
Get all books.
GET /api/books/{id}
Get a specific book by ID.
GET /api/books/category/{categoryId}
Get books by category ID.
GET /api/dua-categories
Get all dua categories.
GET /api/dua-categories/{id}
Get a specific dua category by ID.
GET /api/duas
Get all duas.
GET /api/duas/{id}
Get a specific dua by ID.
GET /api/duas/category/{categoryId}
Get duas by category ID.
GET /api/prayer-guide
Get all Prayer Guide PDFs.
{
"success": true,
"data": [
{
"id": 1,
"title": "Complete Prayer Guide",
"description": null,
"pdf_url": "http://your-domain.com/uploads/guides/file.pdf",
"created_at": "2026-01-14T09:28:08.000000Z"
}
]
}
GET /api/more-zikar
Get all More Zikar PDFs.
{
"success": true,
"data": [
{
"id": 1,
"title": "Zikar Collection",
"description": null,
"pdf_url": "http://your-domain.com/uploads/guides/file.pdf",
"created_at": "2026-01-14T09:28:08.000000Z"
}
]
}
GET /api/hajj-umrah
Get all Hajj & Umrah PDFs.
{
"success": true,
"data": [
{
"id": 1,
"title": "Hajj Guide",
"description": null,
"pdf_url": "http://your-domain.com/uploads/guides/file.pdf",
"created_at": "2026-01-14T09:28:08.000000Z"
}
]
}