import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const orgItems = await client.organizations.categories.list();
console.log(orgItems);
Copy
Ask AI
[
{
"id": "<string>",
"name": "<string>"
}
]
Organization
Get Categories
Get the organization categories.
GET
/
v1
/
org
/
categories
JavaScript
Copy
Ask AI
import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const orgItems = await client.organizations.categories.list();
console.log(orgItems);