Endpoint research.keyword.general
returns the general information for a keyword.
AMALYZE Falcon API
research.keyword.general (POST)
Endpoint
Method
POST research.keyword.general
Example call
Shell
1 2 3 4 5 6 7 8 9 10 11 12 13 |
curl https://falcon.amalyze.com/<VERSION>/research.keyword.general \ -X POST \ -H "X-Falcon-Token: <YOUR-TOKEN-HERE>" \ -d ' { "keywords": [ { "keyword": "fatburner", "marketplace": "A1PA6795UKMFR9" } ] } ' |
JSON Payload
JavaScript
1 2 3 4 5 6 7 8 |
{ "keywords": [ { "keyword": "fatburner", "marketplace": "A1PA6795UKMFR9" } ] } |
Property | Type | Description | Further information |
keywords | array | Array containing the keyword information to query | |
keywords.keyword | string | The keyword to query information for | |
keywords.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": [ {<keyword>} ], "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 keyword items (for more information see keyword object definition |
request | object | The request information object (see request information object definition for more information) |
Updates / Changes
Version | Description |