Baca API Baca Overview Manga, manhwa, and manhua reading API. Three categories, chapter-based pagination, per-chapter signed image URLs. Same familiar data model used across the platform -- titles, tags, and chapters instead of episodes. Categories 3 Titles Growing Chapters Growing Format Image Base URL Base URL https://api.splay.id GET /api/baca/{category}?per_page=20 Categories All Baca endpoints are scoped by category. Replace {category} with one of the following: manga Japanese comics -- read right-to-left manhwa Korean comics -- vertical scroll format manhua Chinese comics -- vertical scroll format Data Model Baca uses the same Drama type as other APIs, with chapters instead of episodes. Each title has a cover image, tags, introduction, and chapter list. Each chapter provides a signed directory URL -- append image filenames to construct per-page image URLs. Field Type Description id number Unique title ID title string Title name cover_url string Signed cover image URL provider_slug string Provider identifier chapter_count number Total chapter count introduction string Synopsis / description tags Tag[] Genre/category tags chapters Chapter[] Chapter list with signed image URLs Chapter Format (Images) Each chapter contains individual images (JPEG/PNG, one per page). The content_url field holds a signed chapter directory URL. The qualities object contains the page count and format. Construct image URLs by appending the page filename to the directory URL. Field Type Description content_url string Signed chapter directory URL (HMAC-SHA256, 30min TTL) qualities.pages number Total number of images (pages) in the chapter qualities.format string Image format -- "image" (original JPEG/PNG) Image URL pattern: {content_url}/001.jpg?sig=...&expires=... -- one signature covers all images in the chapter (the sig and expires params from content_url are reused). All URLs are HMAC-SHA256 signed with 30-minute default TTL (max 4 hours via expires_in). No subtitle support -- manga content is visual. Authentication Same API Key Baca endpoints use the same Authorization: Bearer authentication as all other APIs. Get your key atapi-dashboard. Quick Example GET /api/baca/manga Copy curl"https://api.splay.id/api/baca/manga?per_page=20"\ -H"Authorization: Bearer "