Tablewealth

Organizations

Read organization profile fields for the workspace attached to an API key.

Organization endpoints expose workspace-level profile data. They do not expose users, memberships, or billing settings.

Get organization details

Use this endpoint when an integration needs display metadata for the current workspace.

GET /v1/organization

  • Scope: organization:read
  • Parameters: none
  • Key response fields: name, address, phone, email, website, baseCurrencyCode
curl "https://api.tablewealth.com/v1/organization" \
  -H "X-API-Key: $TABLEWEALTH_API_KEY"
const response = await fetch('https://api.tablewealth.com/v1/organization', {
  headers: {
    'X-API-Key': process.env.TABLEWEALTH_API_KEY!
  }
});

const organization = await response.json();
import os
import requests

response = requests.get(
    "https://api.tablewealth.com/v1/organization",
    headers={"X-API-Key": os.environ["TABLEWEALTH_API_KEY"]},
    timeout=30,
)
response.raise_for_status()
organization = response.json()

Access rules

Organization is derived

The API key determines the organization. Do not ask users to provide an organization id.

Profile fields can be empty

Some fields can be blank depending on the workspace profile. Treat missing optional fields as normal.

Base currency

Use baseCurrencyCode as the display baseline for organization-level summaries when available.

On this page