Get a creator
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/creators/{creatorId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/creators/{creatorId}', 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/{creatorId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "<string>",
"displayName": "<string>",
"country": "<string>",
"note": "<string>",
"labels": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"position": "<string>"
}
],
"channels": [
{
"id": "<string>",
"title": "<string>",
"platformType": "<string>",
"url": "<string>",
"metrics": {
"reach": 123,
"views": 123,
"engagement": 123,
"engagementRate": 123,
"metricsUpdatedAt": "2023-11-07T05:31:56Z"
}
}
]
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Creators
Get a creator
Returns one creator when the organization has a qualifying collaboration with them.
GET
/
creators
/
{creatorId}
Get a creator
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/creators/{creatorId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/creators/{creatorId}', 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/{creatorId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "<string>",
"displayName": "<string>",
"country": "<string>",
"note": "<string>",
"labels": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"position": "<string>"
}
],
"channels": [
{
"id": "<string>",
"title": "<string>",
"platformType": "<string>",
"url": "<string>",
"metrics": {
"reach": 123,
"views": 123,
"engagement": 123,
"engagementRate": 123,
"metricsUpdatedAt": "2023-11-07T05:31:56Z"
}
}
]
}
}{
"error": "<string>"
}{
"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.
Path Parameters
Query Parameters
Set to channels to include channels and metrics.
Available options:
channels Response
The creator.
Show child attributes
Show child attributes