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

# Get multiple accounts

> Fetch multiple accounts by externalIds.

## Endpoint

`GET /external-api/accounts?externalIds=FILE_1,FILE_2`

## Base path

`/external-api/accounts`

## Headers

* `Authorization: Bearer <org_api_key>`

## Rules

* `externalIds` is required
* Maximum 200 IDs per request

## Curl example

```bash theme={null}
curl -sS \
  -X GET "https://api.corafone.com/external-api/accounts?externalIds=FILE_1,FILE_2" \
  -H "Authorization: Bearer cora_org_<keyId>.<secret>"
```

## Success response

```json theme={null}
{
  "success": true,
  "code": "ACCOUNTS_FETCHED",
  "message": "Accounts fetched successfully",
  "accounts": [
    {
      "id": "ACCOUNT_ID",
      "externalId": "FILE_1",
      "organizationId": "ORG_ID",
      "status": "ACTIVE",
      "status_category": "ACTIVE"
    }
  ],
  "notFoundExternalIds": ["FILE_2"],
  "count": 1
}
```

See [Account](/account-overview) for the full account shape and supported status values.
