# 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**

```json
{
  "query":"store name",
}
```

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "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
    }
  ]
}
```

{% endtab %}

{% tab title="400" %}

```json
{
 "status": "error",
 "data": "No store found"
}
```

{% endtab %}
{% endtabs %}
