← Back to Home

Product Overview

Our API service allows you to fetch high-quality product images and detailed specifications simply by entering a search prompt. It's like a search engine designed specifically for product data.

How it works
  • Send a prompt describing the product you want (e.g., "Lenovo ThinkPad T14s").
  • Receive encoded product images in response.
  • Get detailed specifications and descriptions in JSON or HTML format.
  • Integrate easily into your apps, websites, or dashboards.

Example API Responses

Encoded Product Images
{
  "images": [
    "data:image/jpeg;base64,...",
    "data:image/jpeg;base64,..."
  ],
  "message": "Images fetched successfully"
}
    
Product Specs and Description
{
  "desc": {
    "features": [
      "Lightweight and durable",
      "14-inch Full HD display",
      "Intel Core i7 processor"
    ],
    "overview": "The Lenovo ThinkPad T14s offers high performance and portability for professionals."
  },
  "desc_html": "<div>Lightweight and durable laptop suitable for business use.</div>",
  "message": "Successfully fetched specs",
  "specs": {
    "brand": "Lenovo",
    "model": "T14s",
    "processor": "Intel Core i7-1165G7",
    "memory": "16GB RAM",
    "storage": "512GB SSD"
  },
  "specs_html": "<table><tr><td>Brand</td><td>Lenovo</td></tr><tr><td>Model</td><td>T14s</td></tr></table>"
}