u/linaspurinis

MDBList iOS Beta is now on TestFlight!
▲ 18 r/mdblist

MDBList iOS Beta is now on TestFlight!

The first beta is live!

If you’d like to help test:

👉 https://testflight.apple.com/join/JnJaRsrv

Bug reports, rough edges, and feature requests are very welcome . Thanks to everyone who’s been helping shape MDBList so far!

P.S. Calendar and push notifications are coming later, just before the App Store release.

u/linaspurinis — 2 days ago

A movie & TV metadata API with aggregated ratings, external links, anime support, and an OMDb-compatible endpoint

I wanted a single API for personal projects that could return ratings from multiple sources, links to review pages, cross-platform IDs, and anime metadata — without stitching together several different APIs.

Example:

curl "https://api.reeldb.io/v1/title?imdb=tt0133093&apikey=YOUR_KEY"
{
  "title": "The Matrix",
  "year": 1999,
  "type": "movie",

  "ids": {
    "imdb": "tt0133093",
    "tmdb": 603,
    "tvdb": 169,
    "trakt": 481,
    "mal": null
  },

  "links": {
    "imdb": "https://www.imdb.com/title/tt0133093/",
    "letterboxd": "https://letterboxd.com/film/the-matrix/",
    "rottentomatoes": "https://www.rottentomatoes.com/m/matrix",
    "metacritic": "https://www.metacritic.com/movie/the-matrix"
  },

  "ratings": {
    "imdb": { "rating": 8.7, "votes": 2100000 },
    "tmdb": { "rating": 8.2, "votes": 26000 },
    "trakt": { "rating": 85, "votes": 97000 },
    "tomatoes": { "rating": 83, "certified_fresh": true },
    "metacritic": { "rating": 73 },
    "letterboxd": { "rating": 4.2 },
    "roger_ebert": { "rating": 4.0 }
  }
}

No more combining IMDb + Rotten Tomatoes + Metacritic + Letterboxd manually. Everything is returned in a single response, including direct links to review pages.

There’s also an OMDb-compatible endpoint for existing integrations:

curl "https://api.reeldb.io/omdb?i=tt0133093&apikey=YOUR_KEY"

Current features:

  • Aggregated ratings from multiple sources
  • External review links
  • Cross-platform ID lookup (IMDb, TMDb, Trakt, TVDB, MAL, etc.)
  • Anime & MyAnimeList support
  • Cast & crew with profile images
  • Streaming providers by region
  • Season & episode data
  • OMDb-compatible endpoint

GitHub: https://github.com/linaspurinis/reeldb

Website: https://reeldb.io

reddit.com
u/linaspurinis — 19 days ago
▲ 1 r/webdev

Unified movie & TV metadata API with aggregated ratings and cross-platform IDs

I wanted a single API for personal projects that could return:

  • ratings from multiple sources
  • links to review pages
  • cross-platform IDs
  • anime metadata

without combining several APIs manually.

Example:

curl "https://api.reeldb.io/v1/title?imdb=tt0133093&apikey=YOUR_KEY"
{
  "title": "The Matrix",

  "ids": {
    "imdb": "tt0133093",
    "tmdb": 603,
    "tvdb": 169,
    "trakt": 481
  },

  "ratings": {
    "imdb": { "rating": 8.7 },
    "tmdb": { "rating": 8.2 },
    "trakt": { "rating": 85 },
    "tomatoes": { "rating": 83 },
    "metacritic": { "rating": 73 },
    "letterboxd": { "rating": 4.2 }
  },

  "links": {
    "imdb": "...",
    "letterboxd": "...",
    "rottentomatoes": "...",
    "metacritic": "..."
  }
}

There’s also an OMDb-compatible endpoint for existing integrations:

curl "https://api.reeldb.io/?i=tt0133093&apikey=YOUR_KEY"

GitHub: https://github.com/linaspurinis/reeldb

reddit.com
u/linaspurinis — 21 days ago