Welcome to the SparkScrape API. This service provides access to movie and TV show ratings from various sources including TMDB, Metacritic, Rotten Tomatoes, and CSFD.
GET /movie/download/550
GET /tv/download/1399
GET /movie/550
(for movies)GET /tv/1399
(for TV shows)
All endpoints return JSON responses with the following structure:
{ "download_url": "string", // Only for download endpoints "file_size": "string", // Only for download endpoints "tmdb": { ... }, // TMDB data "metacritic": { ... }, // Metacritic ratings "rotten_tomatoes": { ... }, // Rotten Tomatoes ratings "csfd": { ... }, // CSFD ratings "ai_score": number // Calculated AI score }
The API enforces rate limiting to ensure fair usage. Please be considerate of the service and implement appropriate caching on the client side.