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 spots
GET/api/v1/spotsList spots (filter by anime, geo-radius search)
GET/api/v1/spots/:idGet spot detail with all linked anime
GET/api/v1/shopsList anime shops
GET/api/v1/eventsList anime events (ongoing/upcoming/past)
GET/api/v1/searchCross-entity search

Rate Limits

PlanMonthlyPer MinuteBurst/sec
Free1,000105
Developer ($29)50,000605
Business ($99)500,00030010
EnterpriseUnlimited1,00020

See Pricing for plan details. Full OpenAPI spec at /api/v1/openapi.json.