API Status: Online

Anilist GraphQL Proxy

Lightning-fast serverless proxy for the Anilist API. CORS enabled, authentication support, zero configuration required.

🚀 Deploy to Vercel 📚 View on GitHub

Why Choose AniProxy?

🌐

CORS Enabled

Works seamlessly with web applications. No more CORS headaches when building your anime apps.

🔐

Authentication Ready

Forwards authorization headers for authenticated requests. Access user-specific data with ease.

Lightning Fast

Serverless architecture ensures minimal latency. Your queries execute at the speed of light.

🛠️

Zero Config

Deploy in seconds with no setup required. Just click deploy and start building immediately.

🔄

Error Handling

Comprehensive error logging and user-friendly responses. Debug with confidence.

🎯

Drop-in Replacement

Compatible with existing Anilist implementations. Migrate your apps effortlessly.

Quick Start

JavaScript
const query = ` query ($id: Int) { Media (id: $id, type: ANIME) { id title { romaji english } description episodes averageScore } } `; const variables = { id: 15125 }; fetch('https://anilist.vercel.app/api/graphql', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ query, variables }) }) .then(response => response.json()) .then(data => console.log(data));
cURL
curl -X POST \ https://anilist.vercel.app/api/graphql \ -H 'Content-Type: application/json' \ -d '{ "query": "query { Page(perPage: 5) { media(type: ANIME, sort: POPULARITY_DESC) { title { romaji } averageScore } } }" }'

Trusted by Developers

99.9%
Uptime
< 50ms
Avg Response
0
Configuration
Scalability