Get product profile
curl --request GET \
--url https://developer.creao.ai/v1/product-profile \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/product-profile';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/product-profile"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"persona": "<string>",
"brand_context": "<string>"
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}Product Profile
Get product profile
Fetch the account Super Agent product profile.
GET
/
v1
/
product-profile
Get product profile
curl --request GET \
--url https://developer.creao.ai/v1/product-profile \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/product-profile';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/product-profile"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"persona": "<string>",
"brand_context": "<string>"
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}Authorizations
bearerAuthapiKeyQuery
Account API key from Developer Console. Keys start with cr_sk_.