# /misumi/products

`POST /api/misumi/products`

Price: 5 credits

Get a MISUMI (ミスミ) product by series code, part number (型番) or product URL: name, brand, category breadcrumbs, price range and per-piece price range in JPY excluding tax, shipping lead time, rating and rating distribution, review count, variant count, standard specifications, the dimension table, CAD availability, RoHS / chemSHERPA compliance, catalogue references and attached documents. When a part number is supplied the exact configured item is returned as well.

## How to use it

Fetch one MISUMI (ミスミ, Japanese B2B catalog of mechanical components, fasteners and factory automation parts) product. MISUMI addresses products on two levels. A **series** (シリーズ) is a configurable family — one design in many sizes, materials and finishes — named by a numeric series code such as '110302280360'; it carries the price range (`min_price`..`max_price`) across its variants. A **part number** (型番) such as 'BOX-CBE3-10' names one exact configured item inside a series and carries a single `price`. Pass either: a bare series code returns the family, a part number returns the family plus that item under `part`, and a product URL works for both. Prices are JPY **excluding** consumption tax. `min_days_to_ship`/`max_days_to_ship` are the lead time in days (0 = ships the same day). `variant_count` says how many part numbers the series has — list them with misumi/products/variants, narrowing them to one configuration with `specs[].id` and its `filter_value`. `specification_table` is the plain-text dimension table (規格表) printed on the page. `images[].caption` names which member of the family a photo shows where the source labels it — a family sold both singly and by the box publishes one image per packaging. Reviews are in misumi/products/reviews.

## Parameters

- `access-token` (string, required)

## Request body

- `timeout` (integer) — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)
- `product` (string, required) — MISUMI series code (e.g. '110302280360'), a part number (型番, e.g. 'BOX-CBE3-10') or a full product URL (examples: "110302280360", "BOX-CBE3-10", "https://jp.misumi-ec.com/vona2/detail/110302280360/?HissuCode=BOX-CBE3-10"; minLength: 1)

## Response

### 200 — Successful Response

- `@type` (string) (default: "MisumiProduct")
- `id` (string, required)
- `url` (string, required)
- `name` (string, required)
- `description` (string, nullable)
- `brand` (object, nullable)
  - `@type` (string) (default: "MisumiBrandRef")
  - `id` (string, required)
  - `name` (string, required)
  - `alias` (string, nullable)
  - `url` (string, nullable)
  - `is_misumi` (boolean, nullable)
- `category_id` (string, nullable)
- `category_name` (string, nullable)
- `department_id` (string, nullable)
- `breadcrumbs` (array) (default: [])
  - `@type` (string) (default: "MisumiCategoryRef")
  - `id` (string, required)
  - `name` (string, required)
  - `url` (string, nullable)
- `image` (string, nullable)
- `images` (array) (default: [])
  - `@type` (string) (default: "MisumiImage")
  - `url` (string, required)
  - `caption` (string, nullable)
- `shape_image` (string, nullable)
- `min_price` (number, nullable)
- `max_price` (number, nullable)
- `min_price_per_piece` (number, nullable)
- `max_price_per_piece` (number, nullable)
- `currency` (string) (default: "JPY")
- `min_pieces_per_package` (integer, nullable)
- `max_pieces_per_package` (integer, nullable)
- `min_days_to_ship` (integer, nullable)
- `max_days_to_ship` (integer, nullable)
- `min_shortest_days_to_ship` (integer, nullable)
- `max_shortest_days_to_ship` (integer, nullable)
- `rating` (number, nullable)
- `view_count` (integer, nullable)
- `is_stock_item` (boolean, nullable)
- `is_discontinued` (boolean, nullable)
- `is_package_spec` (boolean, nullable)
- `is_special_shipment` (boolean, nullable)
- `has_volume_discount` (boolean, nullable)
- `is_economy` (boolean, nullable)
- `grade` (string, nullable)
- `cad_types` (array) (default: [])
- `labels` (array) (default: [])
- `pictograms` (array) (default: [])
  - `@type` (string) (default: "MisumiPictogram")
  - `name` (string, required)
  - `description` (string, nullable)
- `rohs` (object, nullable)
  - `@type` (string) (default: "MisumiCompliance")
  - `standard` (string, required)
  - `status` (string, nullable)
- `chemsherpa` (object, nullable)
  - `@type` (string) (default: "MisumiCompliance")
  - `standard` (string, required)
  - `status` (string, nullable)
- `overview` (string, nullable)
- `product_description` (string, nullable)
- `specification_table` (string, nullable)
- `delivery_note` (string, nullable)
- `alteration_note` (string, nullable)
- `volume_discount_note` (string, nullable)
- `example_note` (string, nullable)
- `standard_spec_note` (string, nullable)
- `review_count` (integer, nullable)
- `rating_distribution` (object) (default: {})
  - `*` (integer)
- `variant_count` (integer, nullable)
- `specs` (array) (default: [])
  - `@type` (string) (default: "MisumiSpec")
  - `id` (string, required)
  - `name` (string, required)
  - `value` (string, required)
  - `filter_value` (string, nullable)
  - `group` (string, nullable)
  - `group_value` (string, nullable)
  - `code` (string, nullable)
  - `unit` (string, nullable)
  - `image` (string, nullable)
  - `diagram` (string, nullable)
- `keywords` (array) (default: [])
- `notices` (array) (default: [])
- `catalog_pages` (array) (default: [])
  - `@type` (string) (default: "MisumiCatalogPage")
  - `id` (string, required)
  - `name` (string, required)
  - `page` (string, nullable)
- `catalog_url` (string, nullable)
- `catalog_note` (string, nullable)
- `technical_info_url` (string, nullable)
- `external_pdf_url` (string, nullable)
- `documents` (array) (default: [])
  - `@type` (string) (default: "MisumiDocument")
  - `name` (string, required)
  - `url` (string, required)
- `contact` (object, nullable)
  - `@type` (string) (default: "MisumiContact")
  - `name` (string, nullable)
  - `tel` (string, nullable)
  - `fax` (string, nullable)
  - `hours` (string, nullable)
- `has_similar` (boolean, nullable)
- `part` (object, nullable)
  - `@type` (string) (default: "MisumiVariant")
  - `id` (string, required)
  - `url` (string, required)
  - `series_id` (string, required)
  - `part_number` (string, required)
  - `inner_code` (string, nullable)
  - `inner_name` (string, nullable)
  - `inner_name_en` (string, nullable)
  - `type_code` (string, nullable)
  - `price` (number, nullable)
  - `currency` (string) (default: "JPY")
  - `pieces_per_package` (integer, nullable)
  - `min_quantity` (integer, nullable)
  - `order_unit` (integer, nullable)
  - `min_days_to_ship` (integer, nullable)
  - `max_days_to_ship` (integer, nullable)
  - `min_shortest_days_to_ship` (integer, nullable)
  - `max_shortest_days_to_ship` (integer, nullable)
  - `is_stock_item` (boolean, nullable)
  - `is_discontinued` (boolean, nullable)
  - `is_sales_stopped` (boolean, nullable)
  - `sales_stop_message` (string, nullable)
  - `is_special_shipment` (boolean, nullable)
  - `is_prompt_delivery` (boolean, nullable)
  - `has_volume_discount` (boolean, nullable)
  - `part_number_pattern` (string, nullable)
  - `cad_types` (array) (default: [])
  - `labels` (array) (default: [])
  - `notes` (array) (default: [])
  - `cautions` (array) (default: [])
  - `specs` (array) (default: [])
    - `@type` (string) (default: "MisumiSpec")
    - `id` (string, required)
    - `name` (string, required)
    - `value` (string, required)
    - `filter_value` (string, nullable)
    - `group` (string, nullable)
    - `group_value` (string, nullable)
    - `code` (string, nullable)
    - `unit` (string, nullable)
    - `image` (string, nullable)
    - `diagram` (string, nullable)
  - `documents` (array) (default: [])
    - `@type` (string) (default: "MisumiDocument")
    - `name` (string, required)
    - `url` (string, required)

## Errors

### 422 — Validation Error

The request body did not validate

What to do: Check the fields against this schema. A URN with the wrong prefix is the most common cause.

- `detail` (array)
  - `loc` (array, required)
  - `msg` (string, required)
  - `type` (string, required)
  - `input` (any)
  - `ctx` (object)

### 408

The request ran past its time limit

What to do: 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 series code or part number, but no such product on MISUMI)

What to do: 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

What to do: 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

What to do: 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

What to do: Wait at least 30 seconds, then retry.

## Response envelope

Success: Array of objects (may be empty if no results)

Error: Error may coexist with partial results if it occurs mid-execution. Check X-Error header and status code.

Every response carries these headers:

- `X-Error` — Error message text (present only on error)
- `X-Request-ID` — Unique request identifier
- `X-Execution-Time` — Execution time in seconds
- `X-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.

