Endpoint research.product.general
returns the general information (title, bulletpoints, price, etc.) for a ASIN / keyword combination.
AMALYZE Falcon API
research.product.general (POST)
Endpoint
Method
POST research.product.general
Example call
Shell
1 2 3 4 5 6 7 8 9 10 11 12 13 |
curl https://falcon.amalyze.com/<VERSION>/research.product.general \ -X POST \ -H "X-Falcon-Token: <YOUR-TOKEN-HERE>" \ -d ' { "asins": [ { "asin": "B008G1FLG8", "marketplace": "A1PA6795UKMFR9" } ] } ' |
JSON Payload
JavaScript
1 2 3 4 5 6 7 8 |
{ "asins": [ { "asin": "B008G1FLG8", "marketplace": "A1PA6795UKMFR9" } ] } |
Property | Type | Description | Further information |
asins.asin | string | The ASIN, for which ranking data is requested for | |
asins.marketplace | string | The marketplace-ID, for which ranking data is requested for. | valid marketplace-IDs |
JSON Response
JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{ "items": [ {<product>} ], "request": { "id": "708f6b29-0c41-4cd1-ba9a-4346a66fedf9", "took": 0.0571, "costs": 1, "remaining": 99999, "method": "research.product.general.get", "success": true, "error": { "code": null, "message": null, "hint": null } } } |
Property | Type | Description |
items | array | Array containing the product items (for more information see product object definition |
request | object | The request information object (see request information object definition for more information) |
Updates / Changes
Version | Description |