> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the Blooio connection

> Whether your organization has connected Blooio, and with which scopes.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.agentcard.sh/api/v2/blooio/connection \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "blooio_connection",
    "connected": true,
    "blooio_organization_ids": ["borg_…"],
    "scopes": ["messages:send", "numbers:read"],
    "token_expires_at": "2026-10-07T17:00:00Z",
    "created_at": "2026-09-07T17:00:00Z",
    "updated_at": "2026-09-07T17:00:00Z"
  }
  ```
</ResponseExample>

**Errors.** `404 not_found` when no Blooio connection exists for the organization. Start one with [Start the Blooio connection](/api-reference/blooio/oauth-start).
