Install
openclaw skills install @tonywangcn/anime-manga-researchResearches 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.
openclaw skills install @tonywangcn/anime-manga-researchLook up anime and manga titles, characters, staff, and rankings as normalized JSON from the Crawlora API — no scraping fan-wiki or tracker-site pages.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./anime/search (query) to find a title id, then
/anime/title/{id} for detail (accepts a raw id or mal for a
MyAnimeList id), /anime/title/{id}/characters, /anime/title/{id}/staff,
/anime/title/{id}/recommendations. /anime/rankings (filter by
season, season_year, genre, format, status) and
/anime/airing-schedule cover charts and what's currently airing.
/anime/character/{id} and /anime/character/search (query) look up
a character directly./manga/search (query) → /manga/title/{id}
(accepts mal too); /manga/rankings for charts.Full endpoint list, methods, and params: reference/endpoints.md.
# 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 '.'
See reference/endpoints.md for every Anime and
Manga endpoint this skill uses.
/anime/rankings filtered by season+season_year
for a ranked list of the season's titles./anime/title/{id} + /characters + /staff for a full
profile of one show./anime/title/{id}/recommendations for similar titles
to watch after finishing one.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it..../search first if you only have a name.page/per_page) — walk pages for full coverage.