🚧 The Anify documentation is undergoing reconstruction. Please be patient for all features to be fully-documented. 🚧
Get Started

Getting Started

Anify 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.anify.tv (opens in a new tab). Example with NodeJS:

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, but a lot of them can be easily replicated in other languages.