BlueSuite API
REST API v1

Workspace

Get basic information about the current workspace

Get Workspace

Retrieve basic information about the authenticated workspace — name, industry, country, currency, timezone, and about blurb. Use this endpoint when you need to present context about the user's business.

GET /api/v1/workspace

Required Scope: workspace:read

curl https://app.bluesuite.com/api/v1/workspace \
  -H "Authorization: Bearer wk_YOUR_API_KEY"
{
  "success": true,
  "data": {
    "id": 42,
    "name": "Rivera Plumbing",
    "slug": "rivera-plumbing",
    "industry": "Plumbing",
    "industry_key": "plumbing",
    "country": "US",
    "currency": "usd",
    "timezone": "America/Chicago",
    "about": "Family-owned plumbing service in Austin, TX."
  }
}

Response Fields:

FieldTypeDescription
idintegerWorkspace ID
namestringWorkspace display name
slugstringURL slug
industrystring | nullHuman-readable industry label
industry_keystring | nullMachine-readable industry key
countrystring | nullISO country code
currencystring | nullLowercase ISO currency code
timezonestring | nullIANA timezone name
aboutstring | nullShort description of the workspace

On this page