import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const response = await client.organizations.getPersonas();
console.log(response.data);{
"data": [
{
"id": "<string>",
"name": "<string>",
"persona": {
"behavior": {
"painPoints": "<string>",
"motivations": "<string>"
},
"employment": {
"industry": [
"<string>"
],
"jobTitle": [
"<string>"
],
"companySize": [
"<string>"
],
"roleSeniority": [
"<string>"
]
},
"demographics": {
"ageRange": [
"<string>"
]
}
},
"category": {
"id": "<string>",
"name": "<string>"
}
}
]
}import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const response = await client.organizations.getPersonas();
console.log(response.data);{
"data": [
{
"id": "<string>",
"name": "<string>",
"persona": {
"behavior": {
"painPoints": "<string>",
"motivations": "<string>"
},
"employment": {
"industry": [
"<string>"
],
"jobTitle": [
"<string>"
],
"companySize": [
"<string>"
],
"roleSeniority": [
"<string>"
]
},
"demographics": {
"ageRange": [
"<string>"
]
}
},
"category": {
"id": "<string>",
"name": "<string>"
}
}
]
}Was this page helpful?