Clipform

Get caller identity, workspace, and plan

Returns the caller's auth mode, workspace summary, and plan limits in one call. MCP tools use this for plan pre-flight before fat operations like create-form. Three response shapes: - **OAuth-authenticated request**: returns the user's actual workspace and plan tier. - **API key request**: returns the workspace associated with the key. - **No auth**: returns Free defaults. Plan limits are sourced from `PLAN_LIMITS` in `@vid-master/config` (single source of truth).

GET
/me
curl -X GET "https://api.clipform.io/v1/me"

Identity + plan summary

{
  "auth_mode": "oauth",
  "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
  "workspace": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "string"
  },
  "company_id": "b2e6a1c3-1a5e-44ae-a8fd-81f76fd715cf",
  "plan": {
    "tier": 0,
    "name": "string",
    "node_limit": 0,
    "show_branding": true,
    "custom_theme": true,
    "response_limit": 0
  }
}