Skip to Content

USS Auction Data Parser & API

USS is Japan’s largest physical and online car-auction house — the original source of the famous Japanese auction sheets, with a standardized overall grade (S/6/5/…/1), interior grade and a panel-by-panel condition map — and Carapis extracts that auction data through one REST API. Tens of thousands of cars run weekly, members-only and with no public website, and Carapis serves the structured sheet data without you holding an auction membership.

CountryJapan
TypeAuction
OwnerUSS Co., Ltd.
Vehicle typesused, auction, export
Monthly visitsmembers-only
Active listings~tens of K/wk
API accessNo public API (parse-only)
Parse priority★★★★☆
Official sitewww.ussnet.co.jp

What is USS Auction?

USS (USS Co., Ltd.) is Japan’s largest used-vehicle auction operator, running both physical auction sites and an online bidding network. It is a members-only B2B system with no public website — access is normally through auction-membership or proxy/export agents (e.g. via ASNET). USS is the origin of the Japanese auction sheet: a standardized inspection report giving each car an overall grade, interior grade and a diagrammed panel condition map. Tens of thousands of vehicles are graded and sold every week.

Market Position

USS is the dominant force in Japanese car auctions, and its auction sheets set the de-facto standard for the entire Japanese-used-car export industry. Because it is members-only with no public site, its data is reachable mainly through proxy and export services — which is exactly why an API matters: it is the richest structured condition data in the world but the hardest to reach. The grading scale (overall S/6/5/4.5/4/3.5/3/2/1, plus R/RA accident marks; interior A–D) is normalizable across millions of cars (SBT Japan; Provide Cars).

Data Fields Available

Carapis extracts the structured auction-sheet record per lot:

  • Vehicle identity — make, model, trim, model year, fuel type, transmission
  • Auction gradeoverall grade (S/6/5/4.5/4/3.5/3/2/1, R/RA), interior grade (A–D)
  • Panel condition map — the diagrammed marks: A1–A3 scratches, U1–U3 dents, X = replaced panel, W = repaint/wave
  • Condition — mileage (often odometer-verified)
  • Pricinghammer / sold price, auction status
  • Listing context — auction location, photo set

This is the marquee dataset of the region: a standardized, machine-normalizable condition grade plus a panel-level damage map — unmatched anywhere else in the world for vetting used-car condition remotely.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "uss-auction", "limit": 20}, headers={"Authorization": f"Bearer {API_KEY}"}, ) for car in resp.json()["results"]: print(car["make"], car["model"], car["year"], car["auctionGrade"])

Get an API key at my.carapis.com  and see the full API reference. Pricing is on the pricing page.

Use Cases

  • Import / export — auction-sheet grades let exporters and importers vet and price Japanese cars remotely with confidence. See import & export.
  • Pricing intelligence — hammer prices are true wholesale benchmarks for Japanese used cars. See dealership tooling.
  • Market research — track auction volumes, grade distributions and wholesale price trends. See market research.

Frequently asked questions