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"
}| Field | Description |
|---|---|
email | Signed-in email address |
plan | "free" or "pro" |
usage.count | Queries used this month |
usage.limit | Monthly query cap (50 free, 2000 pro) |
account_url | Link to your account dashboard |
When to use
- Authentication looks wrong
- Checking which account is active
- Calls start failing because of quota confusion