Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

aniwixi-api

Anime API for developers — anime data, episodes, streaming embeds, subtitles, and customizable monetization options.

🎬 AnimeWixi API

Anime API for developers — anime data, episode information, streaming embed links, subtitles, and customizable monetization options.

AnimeWixi API provides developers with a simple way to integrate anime data, episode information, and streaming embed functionality into their websites and applications.

🚀 Features

  • 🎬 Anime information and metadata
  • 📺 Episode information
  • 🔗 Streaming embed links
  • 🌐 Subtitle support
  • 🔎 Anime search
  • ⚡ REST API
  • 📱 Easy website integration
  • 💰 Custom advertising support
  • ⭐ Subscription plans
  • 🛠️ Developer-friendly endpoints

📡 API Endpoints

Base URL:

https://aniwixi.xyz/wp-json/aniwixi/v1

1. Get Anime Information

Retrieve anime information and available episodes using an AniList ID, WordPress post ID, or post slug.

Endpoint

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id

Parameters

Parameter Required Description
id Yes AniList ID, Post ID, or Post Slug

Example

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id?id=ANILIST_ID

🎥 2. Get Episode Embed

Retrieve the streaming information and embed data for a specific anime episode.

Endpoint

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id/ep/num

Parameters

Parameter Required Description
id Yes AniList ID, Post ID, or Post Slug
ep Yes Episode number

Example

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id/6

Use the exact endpoint format and parameters shown in the official documentation when integrating the API.


🔎 3. Search Anime

Search the AnimeWixi database.

Endpoint

GET https://aniwixi.xyz/wp-json/aniwixi/v1/search

Parameters

Parameter Required Description
q Yes Search query

Example

GET https://aniwixi.xyz/wp-json/aniwixi/v1/search?q=one%20piece

📚 4. Anime List

Retrieve a paginated list of anime.

Endpoint

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anime

Parameters

Parameter Required Description
page No Page number
per_page No Number of results per page

Example

GET https://aniwixi.xyz/wp-json/aniwixi/v1/anime?page=1&per_page=20

🔗 Streaming Embed

The API can be used to retrieve embed information that can then be integrated into your website.

A direct embed page example:

https://aniwixi.xyz/episode/dogul-wang-episode-6/?display=embed

HTML Example

<iframe
    src="https://aniwixi.xyz/episode/dogul-wang-episode-6/?display=embed"
    width="100%"
    height="500"
    frameborder="0"
    allowfullscreen>
</iframe>

You can adapt the generated embed URL dynamically according to the episode returned by the API.


💻 JavaScript Example

const apiUrl =
  "https://aniwixi.xyz/wp-json/aniwixi/v1/search?q=one%20piece";

fetch(apiUrl)
  .then(response => response.json())
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error("API Error:", error);
  });

🐍 Python Example

import requests

url = "https://aniwixi.xyz/wp-json/aniwixi/v1/search"

params = {
    "q": "one piece"
}

response = requests.get(url, params=params)

print(response.json())

🐘 PHP Example

<?php

$url = "https://aniwixi.xyz/wp-json/aniwixi/v1/search?q=one%20piece";

$response = file_get_contents($url);

$data = json_decode($response, true);

print_r($data);

?>

💰 Custom Advertising

AnimeWixi also provides monetization options for website owners.

Depending on the subscription plan, publishers can integrate their own advertising setup with the streaming embeds.

Custom advertising can be useful for:

  • Website monetization
  • Custom ad networks
  • VAST advertising
  • Direct advertising campaigns
  • Publisher-controlled advertising

This gives website owners more control over how their streaming pages are monetized.


⭐ Subscription

AnimeWixi offers subscription options for publishers and website owners who need additional features.

Subscription benefits include:

  • 🚫 Ad-free embed option
  • 💰 Custom advertising support
  • 🔗 Streaming embed integration
  • ⚡ Higher usage limits
  • 🛠️ Developer support
  • 📈 Options designed for larger websites

Pricing

Monthly: $50/month

Yearly: $480/year

For current availability and subscription information:

👉 View API Plans & Documentation


📖 Documentation

For complete API documentation, parameters, usage information, and integration details:

👉 https://aniwixi.xyz/anime-api-documentation/


🌐 Example Embed

A working AnimeWixi embed example:

Dogul Wang — Episode 6

https://aniwixi.xyz/episode/dogul-wang-episode-6/?display=embed

You can use this URL to test the embed integration on your website.


🧩 Who Is This API For?

AnimeWixi API can be useful for developers building:

  • Anime websites
  • Streaming websites
  • Anime directories
  • Web applications
  • Custom anime platforms
  • Anime-related tools
  • Mobile/web applications

⚡ Why AnimeWixi API?

Instead of building an entire anime data and embed system from scratch, developers can integrate the API into their existing project and focus on their website or application.

The API is designed to make integration as simple as possible.


🔧 Integration

You can use AnimeWixi API with virtually any programming language or framework capable of making HTTP requests.

Examples include:

  • JavaScript
  • PHP
  • Python
  • Node.js
  • WordPress
  • Laravel
  • React
  • Next.js
  • Custom applications

⚠️ Usage & Responsibility

Developers are responsible for ensuring that their use of the API, embeds, and integrated content complies with applicable laws, licensing requirements, and the policies of their hosting providers and advertising networks.

Please review the applicable terms and policies before deploying the service commercially.


📞 Support

For documentation, plans, and integration information:

👉 AnimeWixi API Documentation


🔗 Links

🌐 Website

https://aniwixi.xyz/

📖 API Documentation

https://aniwixi.xyz/anime-api-documentation/

💻 GitHub Repository

https://github.com/Aniwixi/aniwixi-api


⭐ Support the Project

If you find AnimeWixi API useful, consider giving this repository a Star ⭐.

It helps other developers discover the project.

AnimeWixi API — Built for developers.

About

Anime API for developers — anime data, episode information, streaming embed links, subtitles, and customizable monetization options.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors