Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Media / MyAnimeList API (beta ver.)
MyAnimeList API (beta ver.) logo

MyAnimeList API (beta ver.)

★ Only Publicly Available OpenAPI DocumentMediaContent Deliveryoauth2, apiKey18 EndpointsREST

For Agents

Search MyAnimeList anime and manga, read user list status, and update or delete entries on a user's anime or manga list. Returns catalog and list data across 18 operations.

Use for: I need to look up an anime by name, Get the details for a specific anime ID, List this season's new anime releases, Update my watch status for an anime to 'completed'

Not supported: Does not stream anime, sell merchandise, or host video — use for anime and manga catalog lookup, user list management, and forum reading only.

Jentic publishes the only available OpenAPI specification for MyAnimeList API (beta ver.), keeping it validated and agent-ready. The MyAnimeList v2 API exposes anime and manga catalog data plus a user's personal lists, including ranked lists, seasonal anime, suggestions tailored to the authenticated user, and forum boards and topics. Authenticated users can update or remove their list status for any anime or manga, while public catalog and ranking endpoints can be queried with a client ID alone.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the MyAnimeList API (beta ver.) to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MyAnimeList API (beta ver.), or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with MyAnimeList API (beta ver.) API.

Search and list anime in the MyAnimeList catalog

Read detailed metadata for a specific anime or manga title

Pull the seasonal anime lineup for a given year and season

Get personalized anime suggestions for the authenticated user

Add, update, or remove an entry from the user's anime or manga list

Read the anime and manga ranking lists

Browse forum boards and read the messages in a forum topic

Use Cases

Patterns agents use MyAnimeList API (beta ver.) API for, with concrete tasks.

★ Anime Discovery and Recommendation

Build a discovery experience that surfaces seasonal releases and personalized suggestions for an authenticated MyAnimeList user. GET /anime/season/{year}/{season} returns the current seasonal lineup; GET /anime/suggestions returns suggestions tailored to the user's existing list. Together they power 'what to watch this season' modules without operating a recommendation pipeline.

Call GET /anime/season/{year}/{season} for the current quarter and GET /anime/suggestions, then merge results into a discovery feed for the authenticated user.

Personal List Sync from Another Tracker

Sync watch progress recorded in another anime tracker into MyAnimeList so the user's MAL profile stays current. PATCH /anime/{anime_id}/my_list_status updates status, score, and episode count; DELETE /anime/{anime_id}/my_list_status removes an entry. The same flow works for manga via the manga endpoints.

For each watch event in the source tracker, call PATCH /anime/{anime_id}/my_list_status with the new episode count and status.

Top Anime Leaderboard

Render top-ranked anime and manga lists for a community site or fan portal. GET /anime/ranking and GET /manga/ranking return ranked lists by category (all-time, by popularity, airing, upcoming). The lists update automatically as MyAnimeList recomputes rankings, so consumer pages stay current without manual editorial work.

Call GET /anime/ranking with ranking_type=all to render the top 50 anime, then GET /manga/ranking for the manga side.

Forum Topic Reader

Embed MyAnimeList forum boards and topic threads into a community dashboard. GET /forum/boards lists boards; GET /forum/topics lists topics for a board; GET /forum/topic/{topic_id} returns a topic's posts. This lets a fan site surface MAL discussions without scraping the forum HTML.

Call GET /forum/boards, then GET /forum/topics for the selected board and render the topic list with links to GET /forum/topic/{topic_id} for full posts.

AI Agent Anime Tracking Assistant

Equip a Jentic-driven assistant that updates the user's MyAnimeList entries as they describe what they watched. The agent searches Jentic for 'update MyAnimeList anime status', loads PATCH /anime/{anime_id}/my_list_status, and submits the update. Jentic handles the OAuth flow plus the X-MAL-CLIENT-ID header so credentials stay out of the agent's prompt.

Through Jentic, search for 'update my anime list status', load PATCH /anime/{anime_id}/my_list_status, and set status=watching with num_watched_episodes=5 for the matching anime ID.

Key Endpoints

18 endpoints — jentic publishes the only available openapi specification for myanimelist api (beta ver.

METHOD

PATH

DESCRIPTION

GET

/anime

Search the anime catalog

GET

/anime/{anime_id}

Get anime details

GET

/anime/ranking

Get anime ranking

GET

/anime/season/{year}/{season}

Get seasonal anime

GET

/anime/suggestions

Get anime suggestions for the user

PATCH

/anime/{anime_id}/my_list_status

Update anime list status

DELETE

/anime/{anime_id}/my_list_status

Delete an anime from the user's list

GET

/manga

Search the manga catalog

GET

/anime

Search the anime catalog

GET

/anime/{anime_id}

Get anime details

GET

/anime/ranking

Get anime ranking

GET

/anime/season/{year}/{season}

Get seasonal anime

GET

/anime/suggestions

Get anime suggestions for the user

PATCH

/anime/{anime_id}/my_list_status

Update anime list status

DELETE

/anime/{anime_id}/my_list_status

Delete an anime from the user's list

GET

/manga

Search the manga catalog

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

MyAnimeList's X-MAL-CLIENT-ID header and OAuth access token are both managed in the Jentic vault. Jentic decides which credential a given operation requires and injects it at execution time, so agents never juggle two auth modes themselves.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'list seasonal anime' or 'update my anime list' and Jentic returns the matching MAL operation with its input schema, removing the need for agents to navigate the unofficial MAL docs.

Time to first call

Time to first call

Direct integration including OAuth handling and dual-credential routing typically takes 2-3 days. Through Jentic the search, load, execute flow runs in under an hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Kitsu API

→

Kitsu offers an open anime and manga catalog with user lists as an alternative to MyAnimeList.

Choose Kitsu when you want a more permissive open license, or when MAL's OAuth gating is too heavy for the use case.

Complementary

MusicBrainz API

→

MusicBrainz covers music metadata that pairs with MAL when building cross-media fan profiles.

Use MusicBrainz to enrich anime soundtracks and music data alongside MAL anime metadata.

Complementary

TheAudioDB API

→

TheAudioDB adds artist images and biographies that can decorate anime soundtrack credits pulled from MAL.

Use TheAudioDB after MAL to pull richer artist visuals and bios for anime opening and ending themes.

FAQs

Specific to using MyAnimeList API (beta ver.) API through Jentic.

Why is there no official OpenAPI spec for MyAnimeList API (beta ver.)?

MyAnimeList does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call MyAnimeList API (beta ver.) via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the MyAnimeList API use?

MyAnimeList supports two schemes. Public catalog reads accept the X-MAL-CLIENT-ID header with a client ID alone, while user-scoped operations require OAuth 2.0 with an access token from the MyAnimeList authorization flow. Through Jentic, both credentials are stored in the vault and applied at request time.

Can I update my watch status with the MyAnimeList API?

Yes. PATCH /anime/{anime_id}/my_list_status updates the status, score, and episode count for an anime on the authenticated user's list. Use DELETE on the same path to remove the entry entirely.

How do I get seasonal anime through Jentic?

Through Jentic, search for 'list seasonal anime', load GET /anime/season/{year}/{season}, and pass the year and one of winter/spring/summer/fall. Jentic returns the seasonal list to your agent without exposing the underlying credentials.

What are the rate limits for the MyAnimeList API?

MyAnimeList rate limits are not declared in the OpenAPI spec and are enforced at the gateway. Stay below a few requests per second per client and back off on 429 responses; bulk syncs should run sequentially rather than in parallel.

Does the MyAnimeList API expose forum data?

Yes. GET /forum/boards lists boards, GET /forum/topics lists topics in a board, and GET /forum/topic/{topic_id} returns the posts within a topic. This is useful for surfacing community discussions in a fan portal.

GET STARTED

Start building with MyAnimeList API (beta ver.) API

Explore with Jentic
View OpenAPI Document