import Profound from 'profoundai';
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": "<string>",
"name": "<string>",
"website": "<string>",
"is_owned": true,
"created_at": "2023-11-07T05:31:56Z",
"category": {
"id": "<string>",
"name": "<string>"
},
"alternate_domains": []
}
]
}import Profound from 'profoundai';
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": "<string>",
"name": "<string>",
"website": "<string>",
"is_owned": true,
"created_at": "2023-11-07T05:31:56Z",
"category": {
"id": "<string>",
"name": "<string>"
},
"alternate_domains": []
}
]
}Was this page helpful?