Skip to main content
Module

x/omdb/mod.ts

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

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

Example

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

const request = { titleOrId: 'Spider-Man', apiKey: 'xxxx', verbose: 0 };
const result = await getMovie(request);