Skip to main content
GET
/
v1
/
org
/
personas
JavaScript
import Profound from '@profoundai/client';

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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "organization": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryprofound.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Query Parameters

organization_ids
string<uuid>[] | null

Restrict results to one or more organizations the caller belongs to. Repeat the parameter to target multiple orgs (e.g. ?organization_ids=<id1>&organization_ids=<id2>). Omit to return data from every organization the caller has access to.

Response

Successful Response

data
OrganizationPersonasWithCategory · object[]
required