Baca API Endpoints Dedicated /api/baca/{category}/* endpoints for manga, manhwa, and manhua content. All endpoints follow the same patterns as other APIs -- pagination, sorting, filtering, and per-chapter signed image URLs. Authentication Required All data endpoints require Authorization: Bearer . Get your key atapi-dashboard. Category Path Parameter Replace {category} with manga, manhwa, or manhua in all endpoints below. GET /api/baca/{category} List titles in a category -- paginated, with filtering and sorting. Category must be manga, manhwa, or manhua. Parameter Type Required Description category string required manga | manhwa | manhua (path param) page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) provider string optional Filter by provider slug tag string optional Filter by tag name language string optional ISO 639-1 language code (en, ja, ko, zh, ...) sort_by string optional updated_at | created_at | title | play_count | chapter_count sort_order string optional desc | asc Example /api/baca/manga?per_page=20&sort_by=updated_at GET /api/baca/{category}/popular Popular titles ranked by read count Parameter Type Required Description category string required manga | manhwa | manhua (path param) page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) language string optional ISO 639-1 language code Example /api/baca/manhwa/popular?per_page=10 GET /api/baca/{category}/trending Trending titles (recently updated, sorted by read count) Parameter Type Required Description category string required manga | manhwa | manhua (path param) page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) language string optional ISO 639-1 language code Example /api/baca/manhua/trending GET /api/baca/{category}/search Full-text search across titles in a category Parameter Type Required Description category string required manga | manhwa | manhua (path param) q string required Search query page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) Example /api/baca/manga/search?q=one+piece GET /api/baca/{category}/alphabet Browse A-Z -- returns letter counts, or titles starting with a specific letter Parameter Type Required Description category string required manga | manhwa | manhua (path param) letter string optional Single letter (A-Z) to filter titles. Omit for letter counts. page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) Example /api/baca/manga/alphabet?letter=N GET /api/baca/{category}/{id} Get title detail with tags and chapters with signed image URLs Parameter Type Required Description category string required manga | manhwa | manhua (path param) id number required Title ID (integer) expires_in number optional Signed URL TTL in seconds (max 14400, default 1800) Example /api/baca/manga/42 GET /api/baca/{category}/{id}/chapters Paginated chapters for a title with signed image URLs Parameter Type Required Description category string required manga | manhwa | manhua (path param) id number required Title ID (integer) page number optional Page number (default: 1) per_page number optional Results per page (max 100, default 20) expires_in number optional Signed URL TTL in seconds (max 14400, default 1800) Example /api/baca/manga/42/chapters?page=1&per_page=50 Chapter Response Shape Each chapter object contains a content_url (signed chapter directory path) and a qualities object with page count and format. Construct individual image URLs by appending the page filename to the directory URL. Chapter object Copy { "id": 456, "drama_id": 78, "episode_index": 1, "episode_name":"Chapter 1", "status":"published", // Signed chapter directory URL (HMAC-SHA256, 30min TTL) "content_url":"https://cdn.splay.id/baca/manga/42/1?sig=abc123&expires=1742320000", // Image metadata -- page count + format "qualities": { "pages": 24, "format":"image" }, // No subtitles for manga content "subtitles": [], "released_at":"2025-08-01T00:00:00Z", "created_at":"2026-02-20T08:00:00Z" } // Construct image URLs: // {content_url}/001.jpg?sig=abc123&expires=1742320000 // {content_url}/002.jpg?sig=abc123&expires=1742320000 // ... up to {qualities.pages} images // The sig and expires params from content_url apply to all images in the chapter. Pagination All list endpoints return paginated responses with a meta object containing pagination info. Response meta Copy { "data": [...], "meta": { "page": 1, "per_page": 20, "total": 500, "total_pages": 25 } }