bridgableplugin

bridgable_whoami

Check your Bridgable account, plan, and usage.

bridgable_whoami

Shows which Bridgable account the plugin is authenticated as. Useful for verifying the plugin is tied to the right subscription before running a batch of queries.

Arguments

None.

Returns

JSON with account details:

{
  "email": "user@example.com",
  "name": "Jane Doe",
  "plan": "pro",
  "subscription_status": "active",
  "usage": {
    "count": 42,
    "limit": 2000,
    "month": "2025-05"
  },
  "account_url": "https://bridgable.ai/account"
}
FieldDescription
emailSigned-in email address
plan"free" or "pro"
usage.countQueries used this month
usage.limitMonthly query cap (50 free, 2000 pro)
account_urlLink to your account dashboard

When to use

  • Authentication looks wrong
  • Checking which account is active
  • Calls start failing because of quota confusion

On this page