Storefront Trending
Query Parameters
X-Rebuy-Api-Key · string
- Private api key
Code Example
// POST https://rebuyengine.com/api/v1/meta/storefront/trending
const params = new URLSearchParams({
X-Rebuy-Api-Key: "YOUR_VALUE"
});
fetch(`https://rebuyengine.com/api/v1/meta/storefront/trending?${params}`)
.then(response => response.json())
.then(data => console.log(data));
Response Examples
200 - 200
400 - 400
---
title: Storefront Trending
excerpt: >-
Rebuy works with Meta Shops to enable powerful, high converting, product
recommendations.
api:
file: meta-shops.json
operationId: meta-storefront-trending
deprecated: false
hidden: false
metadata:
title: ''
description: ''
robots: index
next:
description: ''
---
## Query Parameters
`X-Rebuy-Api-Key` · string
: Private api key
## Code Example
```javascript
// POST https://rebuyengine.com/api/v1/meta/storefront/trending
const params = new URLSearchParams({
X-Rebuy-Api-Key: "YOUR_VALUE"
});
fetch(`https://rebuyengine.com/api/v1/meta/storefront/trending?${params}`)
.then(response => response.json())
.then(data => console.log(data));
```
## Response Examples
### 200 - 200
```json
{}
```
### 400 - 400
```json
{}
```