POST /api/bookoff/products
Price: 5 credits
Get one BookOff Online (ブックオフ) catalogue entry by its product code or product URL: title, author or artist, publisher, JAN or ISBN barcode, format and language, the second-hand or the brand-new price with the saving against the retail price, reward points, stock and delivery note, star rating and review count, the publisher's blurb, release date, the full genre breadcrumb chain, the related-word tags, cover images, which of the two conditions the shop carries, and how many branches have a copy on the shelf.
Fetch one BookOff Online catalogue entry by its 10-digit product code (e.g. '0020384450') or a full shopping.bookoff.co.jp/used/... or /new/... URL. The same code addresses both sides of a title: pass condition 'used' or 'new' to choose which, or give a URL and the side is taken from it; used is the default. Returns id, url, condition, name, image and images, author and authors, publisher, barcode, media_format, language, price, list_price with discount_amount and discount_percent, reward_points, availability and is_in_stock, which both come from the shop's structured stock statement and therefore agree, so a title the shop marks as down to its last copies still reports as in stock, shipping_note, rating and review_count with reviews_url, description, release_date, category and subcategory, genre_code, categories (the whole breadcrumb chain, each id usable as category_id on the search endpoint), tags (twenty related words the shop draws at random from a much larger pool on every request, so the list differs call to call; each one is usable as the tag filter on search), condition_variants listing the sides the shop publishes for this title, bundle_url when the title is also sold as a set, and store_count, the number of branches that have a copy on the shelf. Barcodes do not address a product directly: feed a JAN or ISBN to the search endpoint as keyword instead, which returns exactly the matching entry. The catalogue keeps entries that are out of stock, so a record exists long after the last copy is sold. Prices are tax-included JPY.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)product string required — BookOff product code (10 digits) or a full product URL (examples: "0020384450", "https://shopping.bookoff.co.jp/used/0020384450")condition string nullable — Which side of the listing to read; taken from the URL when one is given (one of: "used", "new")@type string (default: "BookoffProduct")id string requiredurl string requiredcondition string requiredname string nullableimage string nullableimages array (default: [])author string nullableauthors array (default: [])publisher string nullablebarcode string nullablemedia_format string nullablelanguage string nullableprice number nullablecurrency string (default: "JPY")list_price number nullablediscount_amount number nullablediscount_percent integer nullablereward_points integer nullableavailability string nullableis_in_stock boolean (default: false)shipping_note string nullablerating number nullablereview_count integer nullablereviews_url string nullabledescription string nullabledetails object (default: {})* stringrelease_date string nullablecategory string nullablesubcategory string nullablegenre_code string nullablecategories array (default: [])@type string (default: "BookoffCategoryRef")id string requiredname string requiredtags array (default: [])condition_variants array (default: [])bundle_url string nullablestore_count integer nullablestores_available boolean (default: false)422 — Malformed product (a BookOff product code is 10 digits, e.g. '0020384450') Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Product not found (well-formed code but nothing under that address on shopping.bookoff.co.jp) Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.