soruly / burstlink

Link AniDB, MAL, ANN and Anilist IDs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

burstlink

License

This repo has a json file that helps to look up anime IDs from different Anime DBs. To get more anime info you have to query those database yourself. It only store IDs for mapping.

Usage

e.g. To lookup IDs using MyAnimeList ID:

const db = await fetch(
  "https://raw.githubusercontent.com/soruly/burstlink/master/burstlink.json",
).then((res) => res.json());
console.log(db.find((entry) => entry.mal === 37207));
interface Entry {
  anidb?: number;
  mal?: number;
  anilist?: number;
  ann?: number;
}

Contributing

This repo is automatically kept up-to-date with Anilist and anime-offline-database.

To update the json file, git clone this repo, Install deno, and then

deno run --allow-net --allow-read --allow-write index.ts

About

Link AniDB, MAL, ANN and Anilist IDs

License:MIT License


Languages

Language:TypeScript 100.0%