Skip to main content
GET
/
v1
/
org
/
personas
JavaScript
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>"
      }
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Response

Successful Response

data
OrganizationPersonasWithCategory · object[]
required