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

> ## 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.

# List custom networks

> List the custom networks available to your subscriptions.

Lists the custom networks you can deploy into. Pass a network ID as `custom_network_id` when creating an Enterprise deployment instance.

<Note>
  VPC peering is not available through the API. To peer a custom network with your own VPC, open a support ticket at [support.falkordb.com](https://support.falkordb.com) or email [support@falkordb.com](mailto:support@falkordb.com).
</Note>

## Authorization

<ParamField header="Cookie" type="string" required>
  Session cookie set by [Sign in](/cloud/api-reference/authentication/signin): `omnistrate_token=<jwt>`.
</ParamField>

## Query parameters

<ParamField query="subscriptionId" type="string">
  Only return custom networks available to this subscription.
</ParamField>

<ParamField query="cloudProviderName" type="string">
  Filter by cloud provider, for example `aws` or `gcp`.
</ParamField>

<ParamField query="cloudProviderRegion" type="string">
  Filter by cloud provider region, for example `us-east-1`.
</ParamField>

<ParamField query="customNetworksOnly" type="boolean">
  Return only custom networks. When `false`, default and imported networks are included as well.
</ParamField>

## Response

<ResponseField name="customNetworks" type="object[]" required>
  The custom networks. See [Describe custom network](/cloud/api-reference/networking/describe) for the full field list.
</ResponseField>

```json 200 OK theme={null}
{
  "customNetworks": [
    {
      "id": "net-abc123",
      "name": "prod-vpc",
      "cidr": "10.0.0.0/16",
      "cloudProviderName": "aws",
      "cloudProviderRegion": "us-east-1",
      "status": "READY"
    }
  ]
}
```

## Errors

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