Skip to main content
GET
/
v1
/
org
/
categories
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 categories = await client.organizations.categories.list();

console.log(categories);
[
  {
    "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

id
string<uuid>
required
name
string
required
organization
Organization · object
required