AnyPlay Public API
v1No authentication required
Access movie and TV series data with our public API. Each page returns a maximum of 15 items with pagination support.
API Endpoints
List Movies
Get paginated list of movies with optional genre filtering
https://api.anyplay.stream/v1/movieshttps://api.anyplay.stream/v1/movies?pageNo=1&genre=comedy{
"page": 1,
"total": 125,
"results": [
{
"id": 299534,
"title": "Avengers: Endgame",
"backdrop_path": "https://image.tmdb.org/t/p/original/or06FN3Dka5tukK1e9sl16pB3iy.jpg",
"poster_path": "https://image.tmdb.org/t/p/original/ulzhLuWrPK07P1YkdWQLZnQh1JL.jpg",
"embed_urls": [
"https://anyplay.stream/embed/movie/68ca4cbd203ee8afe6ee44cb/299534"
]
}
]
}List Series
Get paginated list of TV series with optional genre filtering
https://api.anyplay.stream/v1/serieshttps://api.anyplay.stream/v1/series?pageNo=1&genre=comedy{
"page": 1,
"total": 52,
"results": [
{
"id": 1399,
"title": "Game of Thrones",
"backdrop_path": "https://image.tmdb.org/t/p/original/u3bZgnGQ9T01sWNhyveQz0wH0Hl.jpg",
"poster_path": "https://image.tmdb.org/t/p/original/gwPSoYUHAKmdyVywgLpKKA4BjRr.jpg",
"embed_urls": [
"https://anyplay.stream/embed/movie/68ca4cbd203ee8afe6ee44cb/1399/1/1"
]
}
]
}List Genres
Get list of all available genres
https://api.anyplay.stream/v1/genreshttps://api.anyplay.stream/v1/genres{
"genres": [
{
"id": 28,
"name": "Action"
},
{
"id": 12,
"name": "Adventure"
},
{
"id": 16,
"name": "Animation"
},
{
"id": 35,
"name": "Comedy"
},
{
"id": 80,
"name": "Crime"
}
]
}Get Servers
Get list of available streaming servers
https://api.anyplay.stream/v1/servershttps://api.anyplay.stream/v1/servers[
{
"id": "68ca4cbd203ee8afe6ee44cb",
"name": "Server 1 - Fast",
"icon": "Zap"
},
{
"id": "89fa4dbe7f99c4aee88c55ba",
"name": "Server 2 - HD",
"icon": "Video"
}
]Embed Endpoints (iframe)
These endpoints return HTML iframe elements for embedding video streams directly into your application.
Get Movie Stream
Returns an HTML iframe for embedding movie streams
https://anyplay.stream/embed/movie/{server_id}/{TMDB_MOVIE_ID}https://anyplay.stream/embed/movie/68ca4cbd203ee8afe6ee44cb/299534Get TV Series Stream
Returns an HTML iframe for embedding TV series streams
https://anyplay.stream/embed/movie/{server_id}/{TMDB_SERIES_ID}/{SEASON_NUMBER}/{EPISODE_NUMBER}https://anyplay.stream/embed/movie/68ca4cbd203ee8afe6ee44cb/1399/1/1Quick Start
1
Get available servers
Fetch the list of streaming servers using the /v1/servers endpoint
2
Browse content
Use /v1/movies or /v1/series endpoints to get content with pagination
3
Embed streams
Use the embed URLs from the response or construct your own using the embed endpoints