Nganime-Docs/pages/start.mdx
Kiera Affarantia 06210df9ef edit
2024-03-08 18:21:53 +07:00

10 lines
564 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.nganime.my.id", { 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.