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

console.log(namedResources);
[
  {
    "id": "<string>",
    "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

Response

Successful Response

id
string
required
name
string
required