Verify whether a seller listing matches the exact Japanese anime collectible, edition or v
Verify whether a seller listing matches the exact Japanese anime collectible, edition or variant. Uses canonical identity, JAN/model evidence and stored marketplace match signals to detect wrong-version and name-collision risk. WHEN TO USE: Use immediately before purchase when the agent has a seller listing and identity mismatch could cause a bad order. A listing URL or title can be supplied; otherwise the service returns the strongest currently observed matched listings. ...
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
anime-intelligence.goodmy0312.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9YLxx6HtrN4HFd2wBTcBX5Uwn2rtMUYxcUwohzG9aBGT",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"lang": "en",
"listing_title": "Official Japanese listing title",
"query": "Does this eBay listing match the exact Nendoroid edition?"
},
"type": "http"
},
"output": {
"example": {
"authenticity_risk": {
"level": "low"
},
"best_place": {
"price_jpy": 12800,
"source": "yahoo"
},
"buy_wait": {
"decision": "BUY"
},
"charged": true,
"endpoint": "/v1/listing-match",
"expected_fields": [
"match verdict",
"match score",
"canonical identity",
"matched listing",
"match basis",
"known alternative listings"
],
"market": {
"lowest_price_jpy": 12800,
"median_price_jpy": 14200
},
"product": {
"jan_code": "4580590123456",
"name_en": "Official Product Name"
},
"rarity": {
"level": "rare"
},
"service": "ANIME INTELLIGENCE",
"version": "3.7.36"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"const": "GET",
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"buyer_country": {
"description": "ISO alpha-2 buyer destination; defaults to JP for Japan buyers.",
"type": "string"
},
"id": {
"description": "ANIME INTELLIGENCE canonical product UUID.",
"type": "string"
},
"lang": {
"enum": [
"ja",
"en",
"zh",
"ko",
"es",
"fr",
"de",
"it",
"pt",
"id",
"th",
"ru",
"ar",
"hi",
"vi",
"tr",
"nl",
"pl"
],
"type": "string"
},
"listing_title": {
"description": "Optional listing title for listing-match when URL is unavailable.",
"type": "string"
},
"listing_url": {
"description": "Optional listing URL for listing-match.",
"type": "string"
},
"postal_code": {
"description": "Optional destination postal code for landed-cost context.",
"type": "string"
},
"query": {
"description": "Product name, JAN/EAN-13, model number or identifying description.",
"type": "string"
},
"refresh": {
"enum": [
"0",
"1"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://anime-intelligence.goodmy0312.workers.dev/v1/listing-match" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://anime-intelligence.goodmy0312.workers.dev/v1/listing-match");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://anime-intelligence.goodmy0312.workers.dev/v1/listing-match")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6918.json, and this resource appears in /discovery/resources and /discovery/search.