Discover/Yahoo API
live

Yahoo APIauctions.yahoo.co.jp

Search active and completed Yahoo Auctions Japan listings, fetch item details, seller profiles, and find underpriced items vs. 180-day market averages.

Endpoint health
verified 7d ago
search_completed_listings
compare_market_price
get_seller_profile
get_listing_detail
search_listings
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Yahoo API?

This API covers Yahoo Auctions Japan across 5 endpoints, letting you search active listings, retrieve historical sold prices with 180-day market statistics, inspect individual auction details, and evaluate seller reputation. The compare_market_price endpoint is particularly useful: it automatically identifies active listings priced below 80% of the market average, combining completed and active listing data into a single response.

Try it
Sort field
Number of results per page (max 50)
Sort order
Search keyword
Category ID
Pagination offset (starts at 1, increments by limit)
Item condition filter
Maximum price in Yen
Minimum price in Yen
api.parse.bot/scraper/db1cf3fd-add4-4ac6-a70d-1b9d1c8e99d7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/db1cf3fd-add4-4ac6-a70d-1b9d1c8e99d7/search_listings?sort=new&limit=5&order=a&query=Nintendo+Switch&offset=1&condition=new&max_price=50000&min_price=1000' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace auctions-yahoo-co-jp-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Yahoo Auctions Japan SDK — search listings, check market prices, inspect sellers."""
from parse_apis.yahoo_auctions_japan_api import YahooAuctions, Sort, Order, Condition, ListingNotFound

client = YahooAuctions()

# Search active listings for Nintendo Switch, sorted by newest, new condition only
for listing in client.listings.search(query="Nintendo Switch", sort=Sort.NEW, order=Order.DESCENDING, condition=Condition.NEW, limit=5):
    print(listing.title, listing.price, listing.url)

# Drill into a single listing by ID and check its seller
listing = client.listings.get(id="m1233190744")
print(listing.title, listing.price, listing.bid_count)

# Get seller profile via sub-resource navigation
seller = listing.seller.get()
print(seller.display_name, seller.rating_score, seller.good_ratio)

# Search completed/sold listings for market price research
result = client.completedlistings.search(query="iPhone")
print(result.stats.avg_price, result.stats.min_price, result.stats.max_price)
for item in result.items[:3]:
    print(item.title, item.price)

# Compare market price — find underpriced deals
comparison = client.listings.compare_prices(query="iPhone")
print(comparison.market_avg_price)
for deal in comparison.underpriced_items[:3]:
    print(deal.title, deal.price, deal.image_url)

# Typed error handling for a missing listing
try:
    client.listings.get(id="nonexistent_item_12345")
except ListingNotFound as exc:
    print(f"Listing gone: {exc}")

print("exercised: listings.search / listings.get / seller.get / completedlistings.search / listings.compare_prices")
All endpoints · 5 totalmissing one? ·

Search active auction and fixed-price listings by keyword and category. Returns paginated results with item title, price, ID, URL, and thumbnail image. Pagination uses an offset parameter that increments by the limit value. Results are sorted by the sort/order combination. An empty query with a category ID returns all items in that category.

Input
ParamTypeDescription
sortstringSort field
limitintegerNumber of results per page (max 50)
orderstringSort order
querystringSearch keyword
auccatstringCategory ID
offsetintegerPagination offset (starts at 1, increments by limit)
conditionstringItem condition filter
max_priceintegerMaximum price in Yen
min_priceintegerMinimum price in Yen
Response
{
  "type": "object",
  "fields": {
    "items": "array of listing objects with title, id, url, price, image_url",
    "total": "integer total result count"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "m1233190744",
          "url": "https://auctions.yahoo.co.jp/jp/auction/m1233190744",
          "price": 13000,
          "title": "Nintendo Switch 本体のみ Joy-Con付き",
          "image_url": "https://auc-pctr.c.yimg.jp/i/example.jpg"
        }
      ],
      "total": 0
    },
    "status": "success"
  }
}

About the Yahoo API

Search Active and Completed Listings

The search_listings endpoint accepts a query keyword, optional auccat category ID, condition filter, and max_price cap, returning paginated arrays of listing objects — each with title, id, url, price, and image_url — plus a total count. Pagination uses an offset parameter that starts at 1 and increments by whatever limit value you set (max 50 per page). The search_completed_listings endpoint works similarly but returns sold items and appends a stats object with min_price, avg_price, and max_price computed over the trailing 180 days — useful for establishing a price baseline before bidding.

Item Detail and Seller Profile

get_listing_detail takes a single item_id (e.g., m1233190744) and returns the current price in Yen, bid_count, title, and a seller_id you can pass directly to get_seller_profile. That profile endpoint returns the seller's display_name, integer rating_score (total feedback count), and good_ratio — a float between 0.0 and 1.0 representing the positive feedback share. If a listing has expired or the seller does not exist, the API returns an input_not_found error rather than an empty response.

Underpriced Item Detection

compare_market_price is a compound endpoint: supply a query string and it fetches 180-day market data from completed listings, then pulls active listings sorted by price ascending, filters for any item priced below 80% of market_avg_price, and returns the filtered set as underpriced_items alongside the market_avg_price itself. Each item in the array carries the same fields as a standard active listing (title, id, url, price, image_url) plus the market_avg_price for inline comparison. If upstream data is unavailable the endpoint surfaces an upstream_err flag rather than silently returning an empty array.

Reliability & maintenanceVerified

The Yahoo API is a managed, monitored endpoint for auctions.yahoo.co.jp — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when auctions.yahoo.co.jp changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official auctions.yahoo.co.jp API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track 180-day price trends for specific collectibles or electronics before placing a bid
  • Identify arbitrage opportunities by surfacing active Yahoo Auctions Japan listings below 80% of market average
  • Vet sellers before purchasing by checking good_ratio and rating_score from get_seller_profile
  • Build a price alert system using search_completed_listings stats to set notification thresholds
  • Aggregate category-level market data by iterating search_completed_listings across multiple query terms
  • Monitor bid counts on specific items via get_listing_detail to gauge auction competition in real time
  • Filter active listings by max_price and condition to automate deal discovery within a budget
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Yahoo Auctions Japan have an official developer API?+
Yahoo Japan previously offered a public auction API under the Yahoo! JAPAN Developer Network, but access has been significantly restricted and is no longer broadly available to third-party developers.
What does `compare_market_price` actually return, and how is 'underpriced' defined?+
It returns market_avg_price (the 180-day average sold price in Yen derived from completed listings) and underpriced_items — an array of active listings whose current price is less than 80% of that average. Each item includes title, id, url, price, image_url, and market_avg_price for direct comparison.
Are bid history or individual bidder details available?+
Not currently. The API exposes bid_count on a listing and seller-level feedback via get_seller_profile, but per-bid history and individual bidder identities are not covered. You can fork the API on Parse and revise it to add an endpoint targeting individual bid records.
How does pagination work across search endpoints?+
search_listings and search_completed_listings both use an offset parameter that starts at 1. To get the next page, increment offset by the limit value you used (maximum 50). The total field in the response tells you the full result count so you can calculate how many pages exist.
Can I retrieve listings for a specific seller — all active auctions by a given seller ID?+
Not currently. get_seller_profile returns profile metadata (display name, rating, feedback ratio) for a known seller_id, but there is no endpoint to list all active or past auctions belonging to that seller. You can fork the API on Parse and revise it to add a seller-listings endpoint.
Page content last updated . Spec covers 5 endpoints from auctions.yahoo.co.jp.
Related APIs in MarketplaceSee all →
buyee.jp API
Search and retrieve item listings across Japanese marketplaces — including Yahoo Auctions Japan and Mercari Japan — via the Buyee proxy shopping service. Browse products, check prices, and fetch item details across multiple platforms in one place.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.
auction.com API
auction.com API
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
auctionzip.com API
Search and browse auction lots across the AuctionZip marketplace, view detailed lot information and complete auction catalogs, track historical prices realized, and discover auctioneers by name or location. Access auction schedules, item specifications, seller terms, and top-performing auctioneers.
ebay.com.au API
Search active and sold eBay Australia listings to research products, analyze competitors, and view detailed listing information like pricing and performance metrics. Get market insights including demand trends and pricing data to inform your selling strategy.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
ebay.co.uk API
Search eBay UK listings and sold items to find products, compare prices, and view seller feedback and ratings. Access detailed item information, explore categories, and discover daily deals all in one place.