An open API service indexing awesome lists of open source software.

https://github.com/noelrohi/simkl-node

A node.js wrapper for Simkl API
https://github.com/noelrohi/simkl-node

Last synced: 2 months ago
JSON representation

A node.js wrapper for Simkl API

Awesome Lists containing this project

README

        

# simkl-node

A Node.js wrapper for the [Simkl API](https://api.simkl.com).

## Installation

```bash
npm install simkl-node
```

## Usage

```ts
import { Anime } from "simkl-node/anime";

const anime = new ANIME('YOUR_CLIENT_ID');

// Get the top anime series
const trends = await anime.trending();
```