Endpoint generic.asin.check
checks if a specific ASIN / marketplace exists within AMALYZE’s datapool
AMALYZE Falcon API
generic.asin.check (POST)
Endpoint
Method
POST generic.asin.check
Example call
Shell
1 2 3 4 5 6 7 8 9 10 11 12 13 |
curl https://falcon.amalyze.com/<VERSION>/generic.asin.check \ -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 19 20 21 22 23 24 25 26 27 28 29 30 31 |
{ "items": [ { "asin": "B008G1FLG8", "marketplace": { "id": "A1PA6795UKMFR9", "name": "amazon.de" }, "success": true, "monitoring": "simple", "error": { "code": null, "hint": null, "message": null } } ], "request": { "id": "2c8b9ee8-75d6-4241-a374-68ec2d546720", "took": 0.0586, "costs": 0, "remaining": 100000, "method": "generic.asin.check", "success": true, "error": { "code": null, "message": null, "hint": null } } } |
Property | Type | Description |
items | array | Array containing the product information |
items.asin | string | Products ASIN |
items.marketplace | object | Object containing the marketplace information |
items.marketplace.id | string | Official marketplace ID (see Marketplacesmarketplace definition[/su_permanlink] for more information) |
items.marketplace.name | string | The name / domain of the marketplace |
items.success | boolean | indicates, if ASIN has been found within AMALYZE’s datapool |
items.monitoring | string | Type of monitoring (see monitoring type definition for more information) |
items.error | object | Object containing the error information (if occured) |
request | object | The request information object (see request information object definition for more information) |
Updates / Changes
Version | Description |