Stunning Ratings.
Stateless API.
Generate dynamic posters and backdrops for your Addons.
No accounts, no tokens, just beautiful imagery via query parameters.
Configuration
Adjust parameters to see the preview update in real-time.
Preview Output
Stateless dynamic layout generated via query parameters.
Addon Proxy
Paste a Stremio addon manifest to generate a new manifest that always uses ERDB images.
Generated Manifest
Use this URL in Stremio. It ends with manifest.json and has no query params.
Add manifest URL, TMDB key and MDBList key to generate a valid link.
Developers
Stateless rendering for any media ID.
Dynamic Rendering
No tokens needed. Pass parameters in the query string and let ERDB handle metadata and rendering.
Addon Friendly
Perfect for Stremio, Kodi or any media center addon. Use simple URL patterns for easy integration in your code.
API Reference
| Parameter | Values | Default |
|---|---|---|
| type (path) | poster, backdrop, logo | — |
| id (path) | IMDb, TMDB, Kitsu, etc. | — |
| ratings | tmdb, mdblist, imdb, tomatoes, letterboxd, metacritic, trakt, myanimelist, anilist, kitsu | all |
| lang | en, it, es, fr, de, pt, ru, ja, zh, tr | en |
| ratingStyle | glass, square, plain | glass (poster/backdrop), plain (logo) |
| imageText | original, clean, alternative | original (poster), clean (backdrop) |
| posterRatingsLayout | top, bottom, left, right, top-bottom, left-right | top-bottom |
| posterRatingsMaxPerSide | 1-20 | auto |
| backdropRatingsLayout | center, right, right-vertical | center |
| tmdbKey (req) | TMDB v3 API Key | — |
| mdblistKey (req) | MDBList.com API Key | — |
Type Configs
| Type | Config | Layouts / Values |
|---|---|---|
| poster | imageText posterRatingsLayout posterRatingsMaxPerSide | original, clean, alternative top, bottom, left, right, top-bottom, left-right 1-20 (auto if omitted) |
| backdrop | imageText backdropRatingsLayout | original, clean, alternative center, right, right-vertical |
| logo | none (base params only) | — |
ID Formats
| Source | Format | Example |
|---|---|---|
| IMDb | tt + numbers | tt0133093 |
| TMDB | tmdb:id | tmdb:603 |
| Kitsu | kitsu:id | kitsu:1 |
| Anime | provider:id | anilist:123, mal:456 |
Base Structure
AI Developer Prompt
Copy this prompt to help an AI agent implement this API in your addon.
Live Examples
// Movie Poster (IMDb)http://localhost:3000/poster/tt0133093.jpg?ratings=imdb,tmdb&ratingStyle=plain// Backdrop (TMDB)http://localhost:3000/backdrop/tmdb:603.jpg?ratings=mdblist&backdropRatingsLayout=right-vertical