Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Latest commit

 

History

History
50 lines (42 loc) · 1.44 KB

intro.mdx

File metadata and controls

50 lines (42 loc) · 1.44 KB
sidebar_position slug
1
/

Introduction

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

Welcome to AniAPI official documentation. Our API follows REST architecture, returns JSON-Encoded responses using standard HTTP response codes. Each response will be formatted like the following:

{
    "status_code": 200,         // The response HTTP status code
    "message": "Anime found",   // An arbitrary message indicating response content
    "data": {                   // The response JSON-Encoded content
        "anilist_id": 1,
        "mal_id": 1,
        "format": 0,
        "status:": 0,
        "titles": {
            "en": "Cowboy Bebop",
            "jp": "カウボーイビバップ"
        },
        // ...
        "id": 0
    },
    "version": "1"              // The response API version
}

We also support OAuth as the main authentication system. You can find more information in Authentication.

https://api.aniapi.com

Official client libraries

<Tabs defaultValue="dotnet" values={[ { label: '.NET', value: 'dotnet' } ]}>

dotnet add package AniAPI.NET