Trace Moe API
Overview
Trace.moe finds the exact anime scene matching a screenshot or image you upload, returning the anime title, episode number, and timestamp of the matching scene. It uses video fingerprinting to search a database of thousands of anime episodes. Beginners building anime identification tools or Discord bots will find it straightforward since no API key is required.
Beginner Tip
You can search by either uploading an image file or passing an image URL as the url query parameter. For quick tests, try passing a direct image URL to avoid multipart form setup.
Available Data
Example Response
{
"id": "Dwu85P9SOIk",
"urls": {
"full": "https://images.unsplash.com/photo-...",
"regular": "https://images.unsplash.com/photo-...?w=1080",
"thumb": "https://images.unsplash.com/photo-...?w=200"
},
"width": 4000,
"height": 3000,
"user": {
"name": "John Doe",
"username": "johndoe"
}
} Field Reference
result Ordered list of scene matches, highest similarity first. result[].filename Filename of the matched anime video file used for identification. result[].episode Episode number within the series where the scene was found. result[].from Start timestamp in seconds of the matching scene. result[].to End timestamp in seconds of the matching scene. result[].similarity Confidence score from 0.0 to 1.0; values above 0.9 are reliable matches. Implementation Example
const url = "https://soruly.github.io/trace.moe-api/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →AnimeChan
⭐ Beginner's PickAnimeChan serves a database of 10,000+ anime quotes with character and anime title metadata.
AnimeFacts
⭐ Beginner's PickAnimeFacts is a simple REST API with over 100 trivia facts about popular anime series, accessible by an anime slug name.
AnimeNewsNetwork
⭐ Beginner's PickAnime News Network exposes its encyclopedia data as a free XML API, covering anime and manga titles, cast, staff, genres, and release information maintained by professional journalists.
Catboy
⭐ Beginner's PickCatboy serves random neko (anime cat-person) images and GIFs across several mood categories with no API key required.
Jikan
⭐ Beginner's PickJikan is an unofficial REST API for MyAnimeList that lets you fetch anime and manga data without OAuth setup.