Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 2.16 KB

AniDB-Builders.md

File metadata and controls

60 lines (48 loc) · 2.16 KB

You can build different collections using the features of AniDB.net (AniDB).

Name Attribute Description Works with Movies Works with Shows
AniDB ID anidb_id Gets the anime specified by the AniDB ID ✔️ ✔️
AniDB Relation anidb_relation Gets all anime in the relation graph of the specified AniDB ID ✔️ ✔️
AniDB Popular anidb_popular Gets every anime in AniDB's Popular Anime list ✔️ ✔️

AniDB ID

Gets the anime specified by the AniDB ID.

The expected input is an AniDB ID or AniDB Anime URL. Multiple values are supported as either a list or a comma-separated string.

collections:
  Sword Art Online Shows:
    anidb_id: 8692, 8691, 13494
collections:
  Sword Art Online Shows:
    anidb_id: https://anidb.net/anime/8692, https://anidb.net/anime/8691, https://anidb.net/anime/13494

AniDB Relation

Gets all anime in the relation graph of the specified AniDB ID.

To see the relation graph of an anime use: https://anidb.net/anime/<ANIDB_ID>/relation/graph but replace <ANIDB_ID> with the AniDB ID you want to see the relations for.

The expected input is an AniDB ID, AniDB Anime URL, or AniDB Anime Relation URL. Multiple values are supported as either a list or a comma-separated string.

collections:
  All Sword Art Online:
    anidb_relation: 8692
collections:
  All Sword Art Online:
    anidb_relation: https://anidb.net/anime/8692
collections:
  All Sword Art Online:
    anidb_relation: https://anidb.net/anime/8692/relation/graph

AniDB Popular

Gets every anime in AniDB's Popular Anime list.

The expected input is a single integer value of how much anime to query with a max of 30.

The sync_mode: sync option is also recommended since the Trakt Trending lists are continuously updated.

collections:
  AniDB Popular:
    anidb_popular: 30
    sync_mode: sync