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

# List merchant accounts

> List the merchant accounts under your Dintero partner account using the management auth API and pagination so you can drive operations workflows or dashboards.

## Listing merchants

Get a list of all merchant accounts under your partner account.

```bash Request theme={null}
curl https://api.dintero.com/v1/accounts/T11200000/management/accounts \
  -H "Authorization: Bearer <TOKEN>"
```

```json Response theme={null}
[
    {
        "account_id": "T11200001",
        "partner_id": "T112",
        "active": true,
        "livemode": false,
        "company": {
            "business_name": "Acme Store AS",
            "organization_number": "987654321",
            "website": "https://acme-store.example.com"
        },
        "applicant": {
            "first_name": "Jane",
            "last_name": "Doe",
            "email": "jane@acme-store.example.com",
            "signup_reference": "abc-123"
        },
        "paging_token": "pt1"
    }
]
```

## Pagination

The response returns up to 10 accounts by default. Use `limit` (1--100) and `starting_after` to paginate through results. Each account in the response includes a `paging_token` value that you pass as `starting_after` to fetch the next page.

```bash wrap Request theme={null}
curl "https://api.dintero.com/v1/accounts/T11200000/management/accounts?limit=50&starting_after=pt1" \
  -H "Authorization: Bearer <TOKEN>"
```

## Filtering

You can filter accounts by payment connection, country, or service status using query parameters.

```bash wrap Request theme={null}
curl "https://api.dintero.com/v1/accounts/T11200000/management/accounts?country=NO&services=checkout.status.enabled" \
  -H "Authorization: Bearer <TOKEN>"
```

See the [merchant account collection API reference](/partners/accounts/aid_mgmnt_accounts_get) for all available filters and response fields.
