Product image search API

POST /v1/products/search-by-image — find similar products by image on 1688 and Taobao.

Pass image_id from upload image, or supply image_base64 / image_url for upload + search in one call.

Request body

FieldRequiredDescription
channelYes1688 | taobao
image_idOne ofFrom upload-image
image_base64 / image_urlOne ofUpload + search in one step
image_address1688Existing alicdn/1688 image URL
regionNoCrop box, e.g. 266,799,48,581
keywordNoRefine within image results
page / page_sizeNoPagination
languageNoDefault en

Example

POST /v1/products/search-by-image
{
  "channel": "taobao",
  "image_id": "img_1234567890",
  "page": 1,
  "page_size": 20,
  "language": "en"
}

Response

Same as keyword searchStandardProductList, plus optional pic_region_info (detected subject region).

Option A — two steps (reuse image_id):

POST /v1/products/upload-image      → image_id returned
POST /v1/products/search-by-image → items[], total, page, ...

Option B — one step:

POST /v1/products/search-by-image
{ "channel": "1688", "image_base64": "..." }