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

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

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
required
name
string
required