A complete PicaMovies gateway with 77+ endpoints covering movies, TV shows, anime, live TV, football, and Ugandan VJ content — zero dependencies, instant deploy.
Click a poster to auto-fill IDs in stream & detail endpoints
All endpoints under one versioned base. No API key required.
# base /api/v1Plain HTTP GET — works from curl, fetch, axios, anything.
$ curl "/api/v1/search?q=batman"Lists and objects share the same envelope.
{ "success": true, "data": [ ... ], "page": 1, "hasMore": true }Returns a fresh signed URL each call. Never cache these.
GET /api/v1/movies/{id}/stream
→ { "streamUrl": "…signed…" }
Append ?page=2 to any list. Use hasMore to continue.
Auto-routed by ID — no need to know the content type.
/api/v1/detail/{id}
/api/v1/stream/{id}
/api/v1/download/{id}