Anime API for developers — anime data, episodes, streaming embeds, subtitles, and customizable monetization options.
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.
- 🎬 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
Base URL:
https://aniwixi.xyz/wp-json/aniwixi/v1
Retrieve anime information and available episodes using an AniList ID, WordPress post ID, or post slug.
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id| Parameter | Required | Description |
|---|---|---|
id |
Yes | AniList ID, Post ID, or Post Slug |
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id?id=ANILIST_IDRetrieve the streaming information and embed data for a specific anime episode.
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id/ep/num| Parameter | Required | Description |
|---|---|---|
id |
Yes | AniList ID, Post ID, or Post Slug |
ep |
Yes | Episode number |
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anilist/id/6Use the exact endpoint format and parameters shown in the official documentation when integrating the API.
Search the AnimeWixi database.
GET https://aniwixi.xyz/wp-json/aniwixi/v1/search| Parameter | Required | Description |
|---|---|---|
q |
Yes | Search query |
GET https://aniwixi.xyz/wp-json/aniwixi/v1/search?q=one%20pieceRetrieve a paginated list of anime.
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anime| Parameter | Required | Description |
|---|---|---|
page |
No | Page number |
per_page |
No | Number of results per page |
GET https://aniwixi.xyz/wp-json/aniwixi/v1/anime?page=1&per_page=20The 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
<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.
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);
});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
$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);
?>AnimeWixi also provides monetization options for website owners.
Depending on the subscription plan, publishers can integrate their own advertising setup with the streaming embeds.
- 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.
AnimeWixi offers subscription options for publishers and website owners who need additional features.
- 🚫 Ad-free embed option
- 💰 Custom advertising support
- 🔗 Streaming embed integration
- ⚡ Higher usage limits
- 🛠️ Developer support
- 📈 Options designed for larger websites
Monthly: $50/month
Yearly: $480/year
For current availability and subscription information:
👉 View API Plans & Documentation
For complete API documentation, parameters, usage information, and integration details:
👉 https://aniwixi.xyz/anime-api-documentation/
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.
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
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.
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
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.
For documentation, plans, and integration information:
🌐 Website
📖 API Documentation
https://aniwixi.xyz/anime-api-documentation/
💻 GitHub Repository
https://github.com/Aniwixi/aniwixi-api
If you find AnimeWixi API useful, consider giving this repository a Star ⭐.
It helps other developers discover the project.
AnimeWixi API — Built for developers.