import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const namedResources = await client.organizations.categories.list();
console.log(namedResources);[
{
"id": "<string>",
"name": "<string>"
}
]Get the organization categories.
import Profound from 'profoundai';
const client = new Profound({
apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
});
const namedResources = await client.organizations.categories.list();
console.log(namedResources);[
{
"id": "<string>",
"name": "<string>"
}
]Was this page helpful?