Search volume represents the approximate number of monthly searches for a keyword, helping estimate the keyword’s traffic potential. Having access to keyword search volume data for Amazon, a seller could optimize their product listings more effectively and thus improve their visibility on the marketplace.
Using the Amazon Bulk Search Volume endpoint in DataForSEO Labs API, it’s easy to discover the search volume of any keyword. The endpoint can provide search volume values for up to 1,000 keywords in one API request.
Get keyword search volume data for Amazon
1 Call the Amazon Bulk Search Volume endpoint.
POST https://api.dataforseo.com/v3/dataforseo_labs/amazon/bulk_search_volume/live
2 Add the keywords
field to the POST body and specify the keywords you would like to receive search volume data for.
3 Specify the location parameters by adding the location_name
or location_code
field to the POST body.
4 Specify the language parameters by adding the language_name
or language_code
field to the POST body.
You will receive the full list of available locations and languages by making a separate request to the Locations and Languages endpoint.
GET https://api.dataforseo.com/v3/dataforseo_labs/locations_and_languages
Your POST request should be structured as in the following example:
[
{
"language_name": "English",
"location_code": 2840,
"keywords": [
"phone",
"iphone",
"samsung"
]
}
]
Example of the API response:
{
"version": "0.1.20220216",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.1138 sec.",
"cost": 0.0103,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "03141443-2806-0397-0000-6c7055b9410f",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.0476 sec.",
"cost": 0.0103,
"result_count": 1,
"path": [
"v3",
"dataforseo_labs",
"amazon",
"bulk_search_volume",
"live"
],
"data": {
"api": "dataforseo_labs",
"function": "bulk_search_volume",
"se_type": "amazon",
"language_name": "English",
"location_code": 2840,
"keywords": [
"phone",
"iphone",
"samsung"
]
},
"result": [
{
"se_type": "amazon",
"location_code": 2840,
"language_code": "en",
"total_count": 3,
"items_count": 3,
"items": [
{
"se_type": "amazon",
"keyword": "phone",
"search_volume": 50600
},
{
"se_type": "amazon",
"keyword": "iphone",
"search_volume": 95700
},
{
"se_type": "amazon",
"keyword": "samsung",
"search_volume": 40300
}
]
}
]
}
]
}