Find anime releases and handle the whole request end to end. Use when the user asks to 找番、 追更、看最新一集、拿最新一季第一集、帮我下载、只要磁力、先找资源别下载、或者查看刚才下载怎么样; also use it for m...
Coding
anime-manga-research
Try itResearches anime and manga titles via the Crawlora API — search, title detail, characters, staff, recommendations, rankings, and airing schedules — returning clean JSON. Use when the user wants an anime/manga's details, cast/staff, similar titles, seasonal rankings, or what's currently airing.
What it does
Researches anime and manga titles via the Crawlora API — search, title detail, characters, staff, recommendations, rankings, and airing schedules — returning clean JSON. Use when the user wants an anime/manga's details, cast/staff, similar titles, seasonal rankings, or what's currently airing.
The skill document
Anime & manga research
Look up anime and manga titles, characters, staff, and rankings as normalized JSON from the Crawlora API — no scraping fan-wiki or tracker-site pages.
When to use this skill
- "Tell me about this anime/manga" (synopsis, genres, status, score).
- "Who's in the cast / who worked on this?" (characters, staff).
- "What's airing this season?" / "top-ranked anime by genre/year."
- "Find titles similar to ."
- "Search for a character by name" across titles.
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
- Anime —
/anime/search(query) to find a title id, then/anime/title/{id}for detail (accepts a raw id ormalfor a MyAnimeList id),/anime/title/{id}/characters,/anime/title/{id}/staff,/anime/title/{id}/recommendations./anime/rankings(filter byseason,season_year,genre,format,status) and/anime/airing-schedulecover charts and what's currently airing./anime/character/{id}and/anime/character/search(query) look up a character directly. - Manga — mirrors anime:
/manga/search(query) →/manga/title/{id}(acceptsmaltoo);/manga/rankingsfor charts.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Anime:
scripts/crawlora.sh /anime/search query="Frieren" | jq '.'
scripts/crawlora.sh /anime/title/154587 | jq '.'
scripts/crawlora.sh /anime/airing-schedule | jq '.'
# Manga:
scripts/crawlora.sh /manga/search query="Frieren" | jq '.'
scripts/crawlora.sh /manga/rankings | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/anime/rankings?season=summer&season_year=2026" | jq '.'
Endpoint reference
See reference/endpoints.md for every Anime and
Manga endpoint this skill uses.
Examples
- Seasonal roundup:
/anime/rankingsfiltered byseason+season_yearfor a ranked list of the season's titles. - Deep-dive:
/anime/title/{id}+/characters+/stafffor a full profile of one show. - "What's next":
/anime/title/{id}/recommendationsfor similar titles to watch after finishing one.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public title/tracker pages.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Title/character detail needs the platform's own id — resolve via
.../searchfirst if you only have a name. - List endpoints are paginated (
page/per_page) — walk pages for full coverage.
Related skills
Use for Chinese-first, source-grounded anime recommendations when the user asks for anime similar to something they watched, describes nuanced taste, wants f...
Researches movies and TV shows — metadata, cast/crew, ratings, reviews, streaming availability, and box-office performance — via the Crawlora API across IMDb, TMDB, JustWatch, Letterboxd, Rotten Tomatoes, Metacritic, and Box Office Mojo, returning clean JSON. Use when the user asks about a title's cast, ratings/scores, where to stream it, critic or user reviews, or its box-office numbers.
Run deep, multi-source research queries via the kenkyu API and get back a cited answer with sources. Use for any question that benefits from a thorough, sourced investigation rather than a quick answer.
Researches books, authors, and audiobooks via the Crawlora API — Goodreads (books, authors, reviews, lists, quotes), Apple Books (books, audiobooks, series, reviews, charts), and Audible (audiobook catalog search, product detail, narrators/series, reviews, charts, editorial lists) — returning clean JSON. Use when the user wants a book's ratings/reviews, an author's bibliography, curated reading lists, or audiobook details and charts.
Researches video games via the Crawlora API — Steam (store pages, pricing, reviews, player counts, charts, tags, achievements) and PlayStation Store (products, categories, deals) — returning clean JSON. Use when the user wants a game's price/reviews/player count, what's trending or on sale, or a store listing's details.