Skip to main content
GET
/
v1
/
org
/
assets
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.listAssets();

console.log(response.data);
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "website": "<string>",
      "is_owned": true,
      "created_at": "2023-11-07T05:31:56Z",
      "logo_url": "<string>",
      "category": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "organization": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "alternate_domains": [
        "<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
CategoryAssetWithCategory · object[]
required