v0.0.3
A deno client for interacting with the v4 api of football-data.org.
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Versions
football-data-deno
A deno client for interacting with the football-data.org api v4.
RESTful APIs
import { Client } from "https://deno.land/x/football_data/mod.ts";
const token = "";
const football = new Client(token);
// list all areas
football.areas()
.then((resp) => resp.json())
.then(console.log)
.catch((err) => console.log(err));Please see examples folder to check for more endpoints.