# FalkorDB Docs: FalkorDB Cloud API Reference

> Official FalkorDB documentation — the high-performance graph database for GraphRAG, Cypher queries, and knowledge graphs powering accurate GenAI applications.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

## API Reference

- [Introduction](https://docs.falkordb.com/cloud/api-reference/introduction.md): Overview of the FalkorDB Cloud API
- [Schemas](https://docs.falkordb.com/cloud/api-reference/schemas.md): Shared request and response shapes used across the FalkorDB Cloud API.

### Authentication

- [Sign in](https://docs.falkordb.com/cloud/api-reference/authentication/signin.md): Sign into FalkorDB Cloud and receive session cookies.
- [Sign out](https://docs.falkordb.com/cloud/api-reference/authentication/logout.md): End the current session and clear the session cookies.

### Account management

- [List service plans](https://docs.falkordb.com/cloud/api-reference/account/service-plans.md): List the FalkorDB service plans you can subscribe to.
- [Describe user](https://docs.falkordb.com/cloud/api-reference/account/user/describe.md): Retrieve the profile of the signed-in user.

#### Subscriptions

- [List subscriptions](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/list.md): List the subscriptions your account belongs to.
- [Create subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/create.md): Subscribe to a FalkorDB service plan.
- [Describe subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/describe.md): Retrieve the details of a single subscription.
- [Delete subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/delete.md): Cancel a subscription.

#### Access control

- [List subscription users](https://docs.falkordb.com/cloud/api-reference/account/access/list-users.md): List the users who have access to your subscriptions.
- [Invite user](https://docs.falkordb.com/cloud/api-reference/account/access/invite-user.md): Grant a user access to a subscription.
- [Revoke user role](https://docs.falkordb.com/cloud/api-reference/account/access/revoke-user.md): Remove a user's access to a subscription.

### Cloud accounts

- [Cloud accounts](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/overview.md): Connect your own AWS, GCP, Azure, or OCI account for Enterprise BYOA deployments.
- [Create cloud account](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/create.md): Register your own cloud account for Enterprise BYOA deployments.
- [Describe account configuration](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/describe.md): Get the status and bootstrap instructions for a cloud account.
- [Connect or disconnect cloud account](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/connection.md): Reconnect a cloud account or temporarily disconnect it from FalkorDB.

### Custom networks

- [List custom networks](https://docs.falkordb.com/cloud/api-reference/networking/list.md): List the custom networks available to your subscriptions.
- [Create custom network](https://docs.falkordb.com/cloud/api-reference/networking/create.md): Reserve a CIDR block for a custom network in a cloud provider region.
- [Describe custom network](https://docs.falkordb.com/cloud/api-reference/networking/describe.md): Retrieve the details of a custom network.
- [Update custom network](https://docs.falkordb.com/cloud/api-reference/networking/update.md): Rename a custom network.
- [Delete custom network](https://docs.falkordb.com/cloud/api-reference/networking/delete.md): Delete a custom network.

### Snapshots

- [List snapshots](https://docs.falkordb.com/cloud/api-reference/snapshots/list.md): List the snapshots taken across your deployment instances.
- [Create snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/create.md): Take a manual snapshot of a deployment instance.
- [Describe snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/describe.md): Retrieve the details and progress of a snapshot.
- [Restore from snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/restore.md): Create a new deployment instance from a snapshot.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/copy.md): Copy a snapshot to another region.
- [Delete snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/delete.md): Delete a snapshot.

### Database users

- [Database users](https://docs.falkordb.com/cloud/api-reference/database-users/overview.md): Manage FalkorDB database users and ACLs on a deployment instance.
- [List database users](https://docs.falkordb.com/cloud/api-reference/database-users/list.md): List the database users configured on a deployment instance.
- [Create database user](https://docs.falkordb.com/cloud/api-reference/database-users/create.md): Add a database user to a deployment instance.
- [Update database user](https://docs.falkordb.com/cloud/api-reference/database-users/update.md): Rotate the password or change the ACL of a database user.
- [Delete database user](https://docs.falkordb.com/cloud/api-reference/database-users/delete.md): Remove a database user from a deployment instance.

### Enterprise BYOA

#### Standalone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/list.md): List the IDs of all Enterprise BYOA Standalone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/create.md): Provision a new Enterprise BYOA Standalone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/describe.md): Get the current configuration and status of an Enterprise BYOA Standalone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/update.md): Update the configuration of an Enterprise BYOA Standalone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/delete.md): Permanently delete an Enterprise BYOA Standalone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Standalone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Standalone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/failover.md): Fail over a replica of an Enterprise BYOA Standalone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/start.md): Start a stopped Enterprise BYOA Standalone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/stop.md): Stop a running Enterprise BYOA Standalone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/restart.md): Restart an Enterprise BYOA Standalone instance.

#### Cluster (Multi-Zone)

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/list.md): List the IDs of all Enterprise BYOA Cluster (Multi-Zone) instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/create.md): Provision a new Enterprise BYOA Cluster (Multi-Zone) instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Cluster (Multi-Zone) instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/update.md): Update the configuration of an Enterprise BYOA Cluster (Multi-Zone) instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/delete.md): Permanently delete an Enterprise BYOA Cluster (Multi-Zone) instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Cluster (Multi-Zone) instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Cluster (Multi-Zone) instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/failover.md): Fail over a replica of an Enterprise BYOA Cluster (Multi-Zone) instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/start.md): Start a stopped Enterprise BYOA Cluster (Multi-Zone) instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/stop.md): Stop a running Enterprise BYOA Cluster (Multi-Zone) instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/restart.md): Restart an Enterprise BYOA Cluster (Multi-Zone) instance.

#### Cluster (Single-Zone)

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/list.md): List the IDs of all Enterprise BYOA Cluster (Single-Zone) instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/create.md): Provision a new Enterprise BYOA Cluster (Single-Zone) instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Cluster (Single-Zone) instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/update.md): Update the configuration of an Enterprise BYOA Cluster (Single-Zone) instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/delete.md): Permanently delete an Enterprise BYOA Cluster (Single-Zone) instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Cluster (Single-Zone) instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Cluster (Single-Zone) instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/failover.md): Fail over a replica of an Enterprise BYOA Cluster (Single-Zone) instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/start.md): Start a stopped Enterprise BYOA Cluster (Single-Zone) instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/stop.md): Stop a running Enterprise BYOA Cluster (Single-Zone) instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/restart.md): Restart an Enterprise BYOA Cluster (Single-Zone) instance.

#### Multi-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/list.md): List the IDs of all Enterprise BYOA Multi-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/create.md): Provision a new Enterprise BYOA Multi-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Multi-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/update.md): Update the configuration of an Enterprise BYOA Multi-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/delete.md): Permanently delete an Enterprise BYOA Multi-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Multi-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Multi-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/failover.md): Fail over a replica of an Enterprise BYOA Multi-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/start.md): Start a stopped Enterprise BYOA Multi-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/stop.md): Stop a running Enterprise BYOA Multi-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/restart.md): Restart an Enterprise BYOA Multi-Zone instance.

#### Single-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/list.md): List the IDs of all Enterprise BYOA Single-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/create.md): Provision a new Enterprise BYOA Single-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Single-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/update.md): Update the configuration of an Enterprise BYOA Single-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/delete.md): Permanently delete an Enterprise BYOA Single-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Single-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Single-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/failover.md): Fail over a replica of an Enterprise BYOA Single-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/start.md): Start a stopped Enterprise BYOA Single-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/stop.md): Stop a running Enterprise BYOA Single-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/restart.md): Restart an Enterprise BYOA Single-Zone instance.

### Enterprise

#### Standalone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/list.md): List the IDs of all Enterprise Standalone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/create.md): Provision a new Enterprise Standalone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/describe.md): Get the current configuration and status of an Enterprise Standalone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/update.md): Update the configuration of an Enterprise Standalone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/delete.md): Permanently delete an Enterprise Standalone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/backup.md): Trigger an on-demand backup of an Enterprise Standalone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/copy-snapshot.md): Copy a snapshot of an Enterprise Standalone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/failover.md): Fail over a replica of an Enterprise Standalone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/start.md): Start a stopped Enterprise Standalone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/stop.md): Stop a running Enterprise Standalone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/restart.md): Restart an Enterprise Standalone instance.

#### Cluster (Multi-Zone)

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/list.md): List the IDs of all Enterprise Cluster (Multi-Zone) instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/create.md): Provision a new Enterprise Cluster (Multi-Zone) instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/describe.md): Get the current configuration and status of an Enterprise Cluster (Multi-Zone) instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/update.md): Update the configuration of an Enterprise Cluster (Multi-Zone) instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/delete.md): Permanently delete an Enterprise Cluster (Multi-Zone) instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/backup.md): Trigger an on-demand backup of an Enterprise Cluster (Multi-Zone) instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Cluster (Multi-Zone) instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/failover.md): Fail over a replica of an Enterprise Cluster (Multi-Zone) instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/start.md): Start a stopped Enterprise Cluster (Multi-Zone) instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/stop.md): Stop a running Enterprise Cluster (Multi-Zone) instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/restart.md): Restart an Enterprise Cluster (Multi-Zone) instance.

#### Cluster (Single-Zone)

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/list.md): List the IDs of all Enterprise Cluster (Single-Zone) instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/create.md): Provision a new Enterprise Cluster (Single-Zone) instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/describe.md): Get the current configuration and status of an Enterprise Cluster (Single-Zone) instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/update.md): Update the configuration of an Enterprise Cluster (Single-Zone) instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/delete.md): Permanently delete an Enterprise Cluster (Single-Zone) instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/backup.md): Trigger an on-demand backup of an Enterprise Cluster (Single-Zone) instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Cluster (Single-Zone) instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/failover.md): Fail over a replica of an Enterprise Cluster (Single-Zone) instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/start.md): Start a stopped Enterprise Cluster (Single-Zone) instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/stop.md): Stop a running Enterprise Cluster (Single-Zone) instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/restart.md): Restart an Enterprise Cluster (Single-Zone) instance.

#### Multi-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/list.md): List the IDs of all Enterprise Multi-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/create.md): Provision a new Enterprise Multi-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/describe.md): Get the current configuration and status of an Enterprise Multi-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/update.md): Update the configuration of an Enterprise Multi-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/delete.md): Permanently delete an Enterprise Multi-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/backup.md): Trigger an on-demand backup of an Enterprise Multi-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Multi-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/failover.md): Fail over a replica of an Enterprise Multi-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/start.md): Start a stopped Enterprise Multi-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/stop.md): Stop a running Enterprise Multi-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/restart.md): Restart an Enterprise Multi-Zone instance.

#### Single-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/list.md): List the IDs of all Enterprise Single-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/create.md): Provision a new Enterprise Single-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/describe.md): Get the current configuration and status of an Enterprise Single-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/update.md): Update the configuration of an Enterprise Single-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/delete.md): Permanently delete an Enterprise Single-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/backup.md): Trigger an on-demand backup of an Enterprise Single-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Single-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/failover.md): Fail over a replica of an Enterprise Single-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/start.md): Start a stopped Enterprise Single-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/stop.md): Stop a running Enterprise Single-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/restart.md): Restart an Enterprise Single-Zone instance.

### Pro

#### Standalone

- [List instances](https://docs.falkordb.com/cloud/api-reference/pro/standalone/list.md): List the IDs of all Pro Standalone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/create.md): Provision a new Pro Standalone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/describe.md): Get the current configuration and status of a Pro Standalone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/update.md): Update the configuration of a Pro Standalone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/delete.md): Permanently delete a Pro Standalone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/standalone/backup.md): Trigger an on-demand backup of a Pro Standalone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/standalone/copy-snapshot.md): Copy a snapshot of a Pro Standalone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/standalone/failover.md): Fail over a replica of a Pro Standalone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/start.md): Start a stopped Pro Standalone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/stop.md): Stop a running Pro Standalone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/restart.md): Restart a Pro Standalone instance.

#### Cluster (Multi-Zone)

- [List instances](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/list.md): List the IDs of all Pro Cluster (Multi-Zone) instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/create.md): Provision a new Pro Cluster (Multi-Zone) instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/describe.md): Get the current configuration and status of a Pro Cluster (Multi-Zone) instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/update.md): Update the configuration of a Pro Cluster (Multi-Zone) instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/delete.md): Permanently delete a Pro Cluster (Multi-Zone) instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/backup.md): Trigger an on-demand backup of a Pro Cluster (Multi-Zone) instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of a Pro Cluster (Multi-Zone) instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/failover.md): Fail over a replica of a Pro Cluster (Multi-Zone) instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/start.md): Start a stopped Pro Cluster (Multi-Zone) instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/stop.md): Stop a running Pro Cluster (Multi-Zone) instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/restart.md): Restart a Pro Cluster (Multi-Zone) instance.

#### Multi-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/list.md): List the IDs of all Pro Multi-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/create.md): Provision a new Pro Multi-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/describe.md): Get the current configuration and status of a Pro Multi-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/update.md): Update the configuration of a Pro Multi-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/delete.md): Permanently delete a Pro Multi-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/backup.md): Trigger an on-demand backup of a Pro Multi-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/copy-snapshot.md): Copy a snapshot of a Pro Multi-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/failover.md): Fail over a replica of a Pro Multi-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/start.md): Start a stopped Pro Multi-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/stop.md): Stop a running Pro Multi-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/restart.md): Restart a Pro Multi-Zone instance.

#### Single-Zone

- [List instances](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/list.md): List the IDs of all Pro Single-Zone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/create.md): Provision a new Pro Single-Zone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/describe.md): Get the current configuration and status of a Pro Single-Zone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/update.md): Update the configuration of a Pro Single-Zone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/delete.md): Permanently delete a Pro Single-Zone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/backup.md): Trigger an on-demand backup of a Pro Single-Zone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/copy-snapshot.md): Copy a snapshot of a Pro Single-Zone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/failover.md): Fail over a replica of a Pro Single-Zone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/start.md): Start a stopped Pro Single-Zone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/stop.md): Stop a running Pro Single-Zone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/restart.md): Restart a Pro Single-Zone instance.

### Startup

#### Standalone

- [List instances](https://docs.falkordb.com/cloud/api-reference/startup/standalone/list.md): List the IDs of all Startup Standalone instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/create.md): Provision a new Startup Standalone instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/describe.md): Get the current configuration and status of a Startup Standalone instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/update.md): Update the configuration of a Startup Standalone instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/delete.md): Permanently delete a Startup Standalone instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/startup/standalone/backup.md): Trigger an on-demand backup of a Startup Standalone instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/startup/standalone/copy-snapshot.md): Copy a snapshot of a Startup Standalone instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/startup/standalone/failover.md): Fail over a replica of a Startup Standalone instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/start.md): Start a stopped Startup Standalone instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/stop.md): Stop a running Startup Standalone instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/restart.md): Restart a Startup Standalone instance.

### Free

#### Free

- [List instances](https://docs.falkordb.com/cloud/api-reference/free/free/list.md): List the IDs of all Free instances in your subscription.
- [Create instance](https://docs.falkordb.com/cloud/api-reference/free/free/create.md): Provision a new Free instance.
- [Describe instance](https://docs.falkordb.com/cloud/api-reference/free/free/describe.md): Get the current configuration and status of a Free instance.
- [Update instance](https://docs.falkordb.com/cloud/api-reference/free/free/update.md): Update the configuration of a Free instance.
- [Delete instance](https://docs.falkordb.com/cloud/api-reference/free/free/delete.md): Permanently delete a Free instance and its data.
- [Trigger backup](https://docs.falkordb.com/cloud/api-reference/free/free/backup.md): Trigger an on-demand backup of a Free instance.
- [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/free/free/copy-snapshot.md): Copy a snapshot of a Free instance to another region.
- [Failover replica](https://docs.falkordb.com/cloud/api-reference/free/free/failover.md): Fail over a replica of a Free instance.
- [Start instance](https://docs.falkordb.com/cloud/api-reference/free/free/start.md): Start a stopped Free instance.
- [Stop instance](https://docs.falkordb.com/cloud/api-reference/free/free/stop.md): Stop a running Free instance without deleting it.
- [Restart instance](https://docs.falkordb.com/cloud/api-reference/free/free/restart.md): Restart a Free instance.
