List products
curl --request GET \
--url https://workspace.passionfroot.me/api/creators/v1/products \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/creators/v1/products"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "prod_abc",
"name": "Dedicated Newsletter",
"channel": {
"id": "chan_xyz",
"title": "The Weekly Brief",
"platformType": "newsletter"
}
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Catalog
List products
Returns the creator’s complete storefront-visible standalone product catalog. This endpoint is not paginated.
GET
/
products
List products
curl --request GET \
--url https://workspace.passionfroot.me/api/creators/v1/products \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/creators/v1/products"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "prod_abc",
"name": "Dedicated Newsletter",
"channel": {
"id": "chan_xyz",
"title": "The Weekly Brief",
"platformType": "newsletter"
}
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}