List creators
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/creators \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/creators', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/creators"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "creator_abc",
"displayName": "Jane Creator",
"country": "US",
"note": "Always delivers early",
"labels": [
{
"id": "clb_abc",
"name": "High performer"
}
]
}
],
"pagination": {
"nextCursor": "creator_def",
"hasMore": true
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Creators
List creators
Returns creators with a qualifying collaboration with the organization, including private relationship notes and labels.
GET
/
creators
List creators
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/creators \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/creators', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/creators"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "creator_abc",
"displayName": "Jane Creator",
"country": "US",
"note": "Always delivers early",
"labels": [
{
"id": "clb_abc",
"name": "High performer"
}
]
}
],
"pagination": {
"nextCursor": "creator_def",
"hasMore": true
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Authorizations
Create an API key from Settings → API in an approved Partner workspace.
Query Parameters
Comma-separated workspace label IDs. A creator matching any label is returned.
Set to channels to include channels and channel metrics.
Available options:
channels Required range:
1 <= x <= 100Opaque cursor returned by the previous page.