Get current authentication context
/meReturns details about the authenticated API key or dashboard user, including organization info, devices, and usage statistics.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Returns
auth_typeoptionalstringType of authentication used
"api_key""dashboard"validoptionalbooleanWhether the API key is valid (only for api_key auth)
user_idoptionalstring | nullUser ID (only for dashboard auth)
api_keyoptionalstringThe API key (only for api_key auth)
organization_idoptionalstringOrganization ID (only for api_key auth)
organizationoptionalobject
organizationoptionalobjectorganization_idoptionalstringnameoptionalstringcountry_codeoptionalstring | nullcreated_atoptionalintegermetadataoptionalobjectAPI key metadata (only for api_key auth)
integration_detailsoptionalobject | nullIntegration details if the API key is associated with an integration (only for api_key auth)
devicesoptionalobject[]List of devices associated with this API key (only for api_key auth)
devicesoptionalobject[]List of devices associated with this API key (only for api_key auth)
Array of object
phone_numberoptionalstring | nullPhone number assigned to this device (E.164 format)
is_activeoptionalbooleanlast_activeoptionalinteger | nullplan_kindoptionalstringPlan type the underlying allocation runs on. inbound numbers are reply-only — see /me/numbers for details.
"shared""dedicated""inbound""trial""2fa"nullusageoptionalobjectUsage statistics (only for api_key auth)
usageoptionalobjectUsage statistics (only for api_key auth)
inbound_messagesoptionalintegeroutbound_messagesoptionalintegerlast_message_sentoptionalinteger | nullResponse codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X GET https://api.blooio.com/v2/api/me \ -H "Authorization: Bearer bl_live_..."{ "auth_type": "api_key", "valid": false, "user_id": "usr_a1b2c3d4", "api_key": "sk_live_a1b2c3d4", "organization_id": "org_a1b2c3d4", "organization": { "organization_id": "org_a1b2c3d4", "name": "Jane Doe", "country_code": "US", "created_at": 0 }, "metadata": {}, "integration_details": {}, "devices": [ { "phone_number": "+15551234567", "is_active": true, "last_active": 0, "plan_kind": "shared" } ], "usage": { "inbound_messages": 0, "outbound_messages": 0, "last_message_sent": 0 }}