WB Buyer Questions by imt_id
wb_questionsFetch buyer questions and seller answers for a product by imt_id, clarifying details omitted from the listing. Resolve uncertainties about fit, inclusions, or specifications.
Instructions
Fetch buyer questions and seller answers by imt_id (root_id from wb_root_info).
Answers this tool exists for: buyers ask what a listing omits — "does it fit a 60cm opening", "is the cable included", "is this the 10A or the 16A model" — and the seller's reply is often the only public statement of that fact. Reviews describe the experience of owning the product; questions clarify what it actually is.
Keyed by imt_id, exactly like wb_reviews: every colour and size variant
shares one question pool. Passing an nmId returns an empty pool with no error,
so resolve the root id via wb_root_info first.
Return Format
WbQuestionsResponse: {imt_id, total_available, returned, skip, answered_count, has_more, questions, meta}. Question items carry question_id, text, date, user, answered, answer_text, answer_date, nm_id. An empty pool is NOT an error — it means nobody has asked yet.
Error Format
ToolError: BadRequestError on a bad limit or skip; RateLimitedError on HTTP 429; TransportDownError on network failures, non-200 responses and unexpected internal errors; ParserDriftError when a 200 body loses the count key or the questions shape.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Offset into the question pool, for walking past the first page. | |
| limit | No | Max questions to return (1..100). Fetched in pages of 30, which is the upstream cap. | |
| imt_id | Yes | Root ID (imt_id) from wb_root_info. Questions are pooled per imt_id across every variant, NOT by nmId. | |
| answered_only | No | Return only questions the seller has answered. Unanswered questions carry no product information. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meta | No | ||
| skip | No | ||
| imt_id | No | ||
| has_more | No | ||
| returned | No | ||
| questions | No | ||
| answered_count | No | ||
| total_available | No |