A discord bot that retrieves IMDb data for movies/series/games using the OMDb (Open Movie Database) API.
-
Create a discord app, add a bot to your app, and get your bot token.
-
Replace the contents of the .env file in this repository with your bot token and api key.
DISCORD_BOT_TOKEN=<YOUR TOKEN>
,OMDB_API_KEY=<YOUR KEY>
-
Run
npm i
to install dependencies. -
Run
npm start
to start the bot (ornpm run dev
to start with nodemon.) -
Add the bot to your discord server, and use
!imdb info <title>
to fetch data about a specific title, or!imdb search <query>
to fetch a list of titles for that query. eg:!imdb info westworld
,!imdb search game of thrones
.