Anime Pilgrimage Data API
1,300+ real-world anime locations across Japan. Built for apps, AI agents, and developers.
Get Your API Key
Quick Start
cURL
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://otakutrips.com/api/v1/anime?q=jujutsu&per_page=3"
JavaScript
const res = await fetch(
"https://otakutrips.com/api/v1/spots?lat=35.66&lng=139.70&radius_km=5",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const { data, pagination, _meta } = await res.json();Python
import requests
r = requests.get(
"https://otakutrips.com/api/v1/search?q=tokyo+station",
headers={"Authorization": "Bearer YOUR_API_KEY"}
)
data = r.json()["data"]Endpoints
GET
/api/v1/animeList anime series (search, filter by genre/year)GET
/api/v1/anime/:idGet anime detail with linked spotsGET
/api/v1/spotsList spots (filter by anime, geo-radius search)GET
/api/v1/spots/:idGet spot detail with all linked animeGET
/api/v1/shopsList anime shopsGET
/api/v1/eventsList anime events (ongoing/upcoming/past)GET
/api/v1/searchCross-entity searchRate Limits
| Plan | Monthly | Per Minute | Burst/sec |
|---|---|---|---|
| Free | 1,000 | 10 | 5 |
| Developer ($29) | 50,000 | 60 | 5 |
| Business ($99) | 500,000 | 300 | 10 |
| Enterprise | Unlimited | 1,000 | 20 |
See Pricing for plan details. Full OpenAPI spec at /api/v1/openapi.json.