GET /amazon/store-search

Store Search

Search for Amazon brand stores by keyword query.

Amazon Product Data API

Search for Amazon brand stores by name or keyword. Returns a list of matching storefronts with their store IDs, which can be used with the Store Page Details and Store Product Search endpoints.

HTTP Request

GET /amazon/store-search

Parameters

ParameterTypeRequiredDefaultDescription
querystringYes-Search query for store name or keyword
startintegerNo0Starting index for pagination
numintegerNo10Number of results to return (max 100)
marketplacestringNocomAmazon marketplace code

Response

 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
{
  "status": "OK",
  "request_id": "e1f2a3b4-1234-5678-4567-bbbbbbbbbbbb",
  "data": {
    "country": "US",
    "total_results": 45,
    "stores": [
      {
        "store_id": "A2R2RITDJNW1Q6",
        "store_name": "Anker Official",
        "store_url": "https://www.amazon.com/stores/Anker/page/A2R2RITDJNW1Q6",
        "store_logo": "https://m.media-amazon.com/images/S/stores-image-uploads-na-prod/a/AZM_MER_LGO_Anker.png",
        "store_description": "Official Anker store on Amazon",
        "num_products": 320
      },
      {
        "store_id": "B0753G7RKM",
        "store_name": "Anker Work",
        "store_url": "https://www.amazon.com/stores/AnkerWork/page/B0753G7RKM",
        "store_logo": "https://m.media-amazon.com/images/S/stores-image-uploads-na-prod/a/AZM_MER_LGO_AnkerWork.png",
        "store_description": "Professional audio and video solutions by Anker",
        "num_products": 85
      }
    ]
  }
}

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import requests

url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-search"

params = {
    "query": "Anker",
    "num": 10,
    "marketplace": "com"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

for store in data["stores"]:
    print(f"{store['store_name']} - {store['num_products']} products")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-search";

const params = new URLSearchParams({
  query: "Anker",
  num: "10",
  marketplace: "com"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
  }
});

const { data } = await response.json();
data.stores.forEach(store => {
  console.log(`${store.store_name} - ${store.num_products} products`);
});
1
2
3
4
5
6
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-search" \
  --data-urlencode "query=Anker" \
  --data-urlencode "num=10" \
  --data-urlencode "marketplace=com" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"