Store search
POST /search/stores
This endpoint lets you to search for stores on Agora.
Headers
Header
Type
Description
Authorization
string
Bearer token
Request body
{
  "query":"store name",
}Response
{
  "status": "success",
  "stores": [
    {
      "name": "SUPER73",
      "storeUrl": "https://super73.com",
      "agoraStoragePageUrl": "https://searchagora.com/store/SUPER73",
      "productCount": 214
    },
    {
      "name": "Super7",
      "storeUrl": "https://super7.com",
      "agoraStoragePageUrl": "https://searchagora.com/store/Super7",
      "productCount": 2447
    }
  ]
}{
 "status": "error",
 "data": "No store found"
}Last updated
Was this helpful?
