Skip to main content
Module

x/omdb/mod.ts

Access OMDb's API with Deno.
Latest
import * as omdb from "https://deno.land/x/omdb@v3.0.1/mod.ts";

Simple module for querying movies and TV shows from OMDb API.

Example

import { getTitle } from 'https://deno.land/x/omdb/mod.ts';

const result = await getTitle({ titleOrId: 'Spider-Man' });

Functions

Get specific title from IMDb via OMDb's API. A title could be for a movie, TV show or an episode of a TV show.

Search for titles from IMDb via OMDb's API. A title could be for a movie, TV show or an episode of a TV show.