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.models();console.log(orgItems);
Copy
Ask AI
[ { "id": "<string>", "name": "<string>" }]
Organization
Get Models
Get the organization models.
GET
/
v1
/
org
/
models
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.models();console.log(orgItems);