{"id":16179588,"url":"https://github.com/seaneoo/umcu-api","last_synced_at":"2026-01-19T23:02:11.636Z","repository":{"id":250588137,"uuid":"830262460","full_name":"seaneoo/umcu-api","owner":"seaneoo","description":"A consumable-only REST API to retrieve data about the upcoming films and shows in the Marvel Cinematic Universe. Powered by Spring Boot and TMDB API.","archived":false,"fork":false,"pushed_at":"2024-10-30T00:20:33.000Z","size":182,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T11:47:24.493Z","etag":null,"topics":["api","docker","marvel","marvel-api","mongo","mongodb","nginx","rest-api","spring","spring-boot","tmdb","tmdb-api"],"latest_commit_sha":null,"homepage":"https://api.umcu.app","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seaneoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"seaneoo"}},"created_at":"2024-07-17T23:49:45.000Z","updated_at":"2025-04-05T15:54:39.000Z","dependencies_parsed_at":"2024-07-28T17:30:03.377Z","dependency_job_id":"3943e7a8-1dd5-497e-a6b7-1d78e8d225ac","html_url":"https://github.com/seaneoo/umcu-api","commit_stats":{"total_commits":63,"total_committers":1,"mean_commits":63.0,"dds":0.0,"last_synced_commit":"db34592c9bfad576c6342fc0455ada86e2cf3c3e"},"previous_names":["upcomingmcu/api","seaneoo/umcu-api"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/seaneoo/umcu-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seaneoo%2Fumcu-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seaneoo%2Fumcu-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seaneoo%2Fumcu-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seaneoo%2Fumcu-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seaneoo","download_url":"https://codeload.github.com/seaneoo/umcu-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seaneoo%2Fumcu-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28588968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","docker","marvel","marvel-api","mongo","mongodb","nginx","rest-api","spring","spring-boot","tmdb","tmdb-api"],"created_at":"2024-10-10T05:41:54.624Z","updated_at":"2026-01-19T23:02:11.619Z","avatar_url":"https://github.com/seaneoo.png","language":"Kotlin","funding_links":["https://github.com/sponsors/seaneoo"],"categories":[],"sub_categories":[],"readme":"\u003e [!WARNING]  \n\u003e I will no longer be hosting an instance of this API in the near future. If you would like to keep using it, please create your own server.\n\n# UpcomingMCU API\n\nUpcomingMCU (UMCU) API is a free, consumable-only REST API to retrieve data about the productions within the [Marvel\nCinematic Universe (MCU)](https://en.wikipedia.org/wiki/Marvel_Cinematic_Universe).\n\n[![GitHub Release](https://img.shields.io/github/v/release/seaneoo/umcu-api?include_prereleases\u0026label=latest%20release)](https://github.com/seaneoo/umcu-api/releases) [![Build Boot Jar](https://github.com/seaneoo/umcu-api/actions/workflows/build-boot-jar.yml/badge.svg)](https://github.com/seaneoo/umcu-api/actions/workflows/build-boot-jar.yml) [![Build Docker Image](https://github.com/seaneoo/umcu-api/actions/workflows/build-docker-image.yml/badge.svg)](https://github.com/seaneoo/umcu-api/actions/workflows/build-docker-image.yml)\n\n## Installation\n\nBefore starting, ensure you have Docker and Docker Compose installed.\n\n1. [Obtain an \"API Read Access Token\" from TMDB.](https://www.themoviedb.org/settings/api) This token will be used in\n   step 3.\n\n1. Create a folder for the project. The location does not matter (such as the `home` directory).\n\n```bash\nmkdir umcu\ncd umcu\n```\n\n2. Run the following commands to download the required files. Make sure `default.conf.template` is in the `nginx`\n   directory.\n\n```bash\nwget https://raw.githubusercontent.com/seaneoo/umcu-api/refs/heads/main/docker/compose.yaml\nwget https://raw.githubusercontent.com/seaneoo/umcu-api/refs/heads/main/docker/nginx/default.conf.template --directory-prefix=nginx/default.conf.template\n```\n\n3. Set the following environment variables on your machine. It is recommended that `MONGO_USERNAME` and `MONGO_PASSWORD`\n   are secure, random strings.\n\n```bash\nexport MONGO_USERNAME=[change me]\nexport MONGO_PASSWORD=[change me]\nexport TMDB_API_KEY=[your api read access token]\nexport TMDB_LIST_ID=8289533\n```\n\n4. Run the Docker container.\n\n```bash\ndocker compose -f compose.yaml up -d\n```\n\n## Data\n\nThis product uses the TMDB API but is not endorsed or certified by TMDB.\n\nCheck them out here: [The Movie Database](https://www.themoviedb.org/?language=en-US).\n\n## License\n\n[GNU GPLv3](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseaneoo%2Fumcu-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseaneoo%2Fumcu-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseaneoo%2Fumcu-api/lists"}