BetaThe V4 API is in beta — endpoints and functionality may change.
Accountv2

Get current authentication context

GET/me

Returns details about the authenticated API key or dashboard user, including organization info, devices, and usage statistics.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Returns

auth_typeoptionalstring

Type of authentication used

"api_key""dashboard"
validoptionalboolean

Whether the API key is valid (only for api_key auth)

user_idoptionalstring | null

User ID (only for dashboard auth)

api_keyoptionalstring

The API key (only for api_key auth)

organization_idoptionalstring

Organization ID (only for api_key auth)

organizationoptionalobject
organization_idoptionalstring
nameoptionalstring
country_codeoptionalstring | null
created_atoptionalinteger
metadataoptionalobject

API key metadata (only for api_key auth)

integration_detailsoptionalobject | null

Integration 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)

Array of object

phone_numberoptionalstring | null

Phone number assigned to this device (E.164 format)

is_activeoptionalboolean
last_activeoptionalinteger | null
plan_kindoptionalstring

Plan type the underlying allocation runs on. inbound numbers are reply-only — see /me/numbers for details.

"shared""dedicated""inbound""trial""2fa"null
usageoptionalobject

Usage statistics (only for api_key auth)

inbound_messagesoptionalinteger
outbound_messagesoptionalinteger
last_message_sentoptionalinteger | null

Response codes

200Authentication context
401Authentication required or invalid

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X GET https://api.blooio.com/v2/api/me \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "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  }}