mirror of
https://github.com/MinazukiAmane/Nganime-Docs.git
synced 2025-03-15 15:15:55 +08:00
10 lines
559 B
Plaintext
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. |