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.