Nganime-Docs/pages/start.mdx
Kiera Affarantia 33b9c31abf add library
2024-03-08 15:50:08 +07:00

10 lines
559 B
Plaintext

import { Tab, Tabs } from "nextra-theme-docs";
# Getting Started
Nganime API utilizes a REST API which is wildly supported across multiple platforms. Use your code base of choice and send requests to the public API [https://api.nganime.my.id](https://api.nganime.my.id).
Exampe with NodeJS:
```js
const axios = require("axios");
await axios.get("https://api.anify.tv", { headers: {"Content-Type": "application/json" }});
```
Most of this documentation will feature examples in NodeJS and Python, but a lot of them can be easily replicated in other languages.