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

# Query Businesses

> List all businesses for the authenticated user.

`GET /api/v1/businesses/`

This endpoint has no query parameters.

## Request example

```shell theme={null}
curl --request GET 'https://payments.bleepay.com/api/v1/businesses/' \
  --header 'Authorization: Bearer <user_token>'
```

## Response

Returns an array of business objects.

### Example response

```json theme={null}
[
  {
    "id": "biz_abc123",
    "name": "Acme Corporation",
    "status": "ACTIVE",
    "createdAt": "2026-06-09T12:00:00.000Z"
  }
]
```
