Blooio API Reference
Account

Get current authentication context

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

GET
/me

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Response Body

application/json

application/json

curl -X GET "https://backend.blooio.com/v2/api/me"
{
  "auth_type": "api_key",
  "valid": true,
  "api_key": "string",
  "organization_id": "string",
  "organization": {
    "organization_id": "string",
    "name": "string",
    "country_code": "string",
    "created_at": 0
  },
  "metadata": {},
  "integration_details": {},
  "devices": [
    {
      "phone_number": "string",
      "is_active": true,
      "last_active": 0
    }
  ],
  "usage": {
    "inbound_messages": 0,
    "outbound_messages": 0,
    "last_message_sent": 0
  }
}
{
  "error": "string",
  "status": 0
}