Skip to main content
GET
/
workspace
Get current workspace
curl --request GET \
  --url https://api.cut.pro/api/v1/workspace \
  --header 'X-Api-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "is_personal": true,
  "status": "<string>",
  "plan_id": "<string>",
  "plan_name": "<string>",
  "plan_is_free": true,
  "credits": 123,
  "seat_count": 123,
  "max_total_seats": 123,
  "member_count": 123,
  "created_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Response

Response for status 200

id
string
required

Unique workspace ID

name
string
required

Workspace name

is_personal
boolean
required

true if this is the user's personal workspace, false if it is a team workspace

status
string
required

Workspace status — typically active

role
enum<string>
required
Available options:
admin,
member
plan_id
string
required

ID of the current subscription plan

plan_name
string | null
required

Display name of the current plan

plan_is_free
boolean
required

true if the workspace is on the free plan

credits
number
required

Current credit balance for this workspace

seat_count
number
required

Number of paid extra seats

max_total_seats
number
required

Maximum total seats available on the current plan, including any plan-included free seats

member_count
number
required

Total members currently in the workspace, including the owner

created_at
string
required

ISO 8601 timestamp of when the workspace was created

Last modified on May 27, 2026