About this endpoint
What it does
Extracts product details from a product page URL and returns a JSON object with the parsed fields found on that page. The request sends a URL, and the response may include identifiers, pricing, media, ratings, confidence scores, and other extracted product metadata.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | Product page URL to extract details from; HTTP/HTTPS only. |
Response
Returns a JSON object with product information fields such as sku, name, brand, price, images, rating, currency, confidence, source_url, description, availability, review_count, and extraction_method. confidence is itself an object with per-field confidence scores.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| sku | String | No | Product SKU. |
| name | String | No | Product name. |
| brand | String | No | Product brand. |
| price | String | No | Product price. |
| images | String Array | No | Product image URLs. |
| rating | Number | No | Product rating as a float. |
| currency | String | No | Price currency. |
| confidence | Object | No | Confidence scores for extracted fields. Contains name and price as float values. |
| source_url | String | No | Source product URL. |
| description | String | No | Product description. |
| availability | String | No | Product availability value. |
| review_count | Integer | No | Number of reviews. |
| extraction_method | String | No | Method used to extract the product data. |