Skip to content

Workspace

Get information about your workspace, including plan details and usage quotas.

Get workspace info

GET /api/v1/workspace

Returns your current workspace's details, plan, and storage usage.

Example

bash
curl -H "Authorization: Bearer findclix_..." \
  "https://findclix.com/api/v1/workspace"

Response

json
{
  "success": true,
  "data": {
    "id": "org_abc123",
    "name": "My Team",
    "plan": {
      "id": "pro",
      "name": "Pro",
      "storage_limit_bytes": 53687091200,
      "max_creators": 0,
      "max_members": 5
    },
    "usage": {
      "storage_used_bytes": 1073741824,
      "storage_remaining_bytes": 52613349376,
      "storage_percent_used": 2,
      "media_count": 42,
      "creator_count": 3,
      "member_count": 2
    },
    "created_at": "2026-01-01T00:00:00.000Z"
  }
}

INFO

max_creators and max_members are 0 for unlimited (Pro, Agency, Enterprise). The Free plan allows 1 creator and 1 member. storage_remaining_bytes is null when storage is unlimited.

Interactive reference

Workspace info & quota

GET
/workspace

Playground

Authorization

Samples