Accessing omdb api in web development

what 2 links are specified in the javascript file for accessing the omdb api in movie-finder project in web development

Hi @mrunmayee.22110395
In the Movie Finder project, the javascript file movie_finder.js has the following two codes:

const API_URL = [Your OMDb API Link#]
const API_URL_SEARCH = http://www.omdbapi.com/?apikey="[Your API##]"


#: You will receive the OMDb API link by following the given ways:

  • Go to OMDb API key Page,
  • Choose FREE (1000 daily limit),
  • Type your mail id, name and usage and Submit the request.
  • Find the OMDb API link in the mail generated.

##: The API is provided in the mail generated itself.

1 Like

Thanks for this information!