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

# List instances

> List the IDs of all Enterprise Multi-Zone instances in your subscription.

Returns the IDs of every Enterprise Multi-Zone instance you can access. Use [Describe](/api-reference/enterprise/multi-zone/describe) to fetch the details of an individual instance.

## Authorization

<ParamField header="Cookie" type="string" required>
  Session cookie set by [Sign in](/api-reference/authentication/signin): `omnistrate_token=<jwt>`.
  Browsers send it automatically; other clients must forward it on every request.
</ParamField>

## Query parameters

<ParamField query="subscriptionId" type="string">
  ID of the subscription that owns the instance.
</ParamField>

## Response

<ResponseField name="ids" type="string[]">
  IDs of the resource instances.
</ResponseField>

```json 200 OK theme={null}
{
  "ids": ["instance-abc123", "instance-def456"]
}
```

## Errors

See [Error](/api-reference/schemas#error) for the shared error response shape.
