FilmAPI Reference
Welcome to the unofficial FilmAPI documentation. detailed information about movies and series, including trending content, search functionality, and streaming sources.
Base URL: https://filmapi.irfncode.my.id
Trending Content
Get a list of currently trending movies and series.
/api/moviebox/trending Search Content
Search for movies and TV series by title.
/api/moviebox/search Query Parameters
query
String • Query
The search term to find movies or series. Example: 'avengers'
Get Details
Retrieve detailed information for a specific movie or series using its Subject ID.
/api/moviebox/detail Query Parameters
subjectId
String • Query
Unique identifier for the content (obtained from search/trending results).
title
String • Query
Title of the content used for logging purposes.
Get Streaming Sources
Fetch available streaming sources for a specific episode of a series or a movie.
/api/moviebox/sources Query Parameters
subjectId
String • Query
Unique identifier for the content.
season
Number • Query
Season number for series. Defaults to 1.
episode
Number • Query
Episode number. Defaults to 1.
curl --request GET \
--url https://filmapi.irfncode.my.id/api/moviebox/search?query=avengers \
--header 'Content-Type: application/json'