vndb-api-Kana
An API wrapper for VVNDB HTTP API(v2) that allows you to interact with the VNDB API in a type-safe manner using TypeScript.
Features
Installation
To install this package, simply run the following command:
npm install vndb-api-kana
Usage
import Kana from 'vndb-api-kana';
const kana = new Kana({
baseURL: 'https://api.vndbproxy.org/kana'
});
kana.setAuth(TOKEN);
kana.apis
.getVn({
filters: ['search', '=', 'ハミダシクリエイティブ凸'],
fields: ['id', 'title', 'image.id'],
})
.then((res) => {
console.log(
res.results.map((item) =>
item.image?.map((image) => image.id).join(', '),
),
);
});
.catch((e) => {
});
import { api, CharacterFilters } from 'vndb-api-kana';
const characterFilters: CharacterFilters = [
'and',
['weight', '>', 200],
['height', '<', 140],
];
(async () => {
try {
const res = await api.getCharacter({
filters: characterFilters,
fields: ['id', 'traits.name'],
});
console.log(res);
} catch (e) {
}
})();
Images