---
title: "GET /networks"
method: GET
path: "/networks"
---

# GET /networks

`GET /networks`

List networks

## Query parameters

- `filters` string

## Response `200`

The request has succeeded.

- NetworkSummary[]
  - `Name` string — Name of the network.
  - `Id` string — ID that uniquely identifies a network on a single machine.
  - `Created` string, date-time — Date and time at which the network was created in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds.
  - `Scope` string — The level at which the network exists (e.g. `swarm` for cluster-wide or `local` for machine level)
  - `Driver` string — The name of the driver used to create the network (e.g. `bridge`, `overlay`).
  - `EnableIPv4` boolean — Whether the network was created with IPv4 enabled.
  - `EnableIPv6` boolean — Whether the network was created with IPv6 enabled.
  - `IPAM` IPAM
    - `Driver` string — Name of the IPAM driver to use.
    - `Config` IPAMConfig[] — List of IPAM configuration options, specified as a map: ``` {"Subnet": <CIDR>, "IPRange": <CIDR>, "Gateway": <IP address>, "AuxAddress": <device_name:IP address>} ```
      - `Subnet` string
      - `IPRange` string
      - `Gateway` string
      - `AuxiliaryAddresses` object
    - `Options` object — Driver-specific options, specified as a map.
  - `Internal` boolean — Whether the network is created to only allow internal networking connectivity.
  - `Attachable` boolean — Whether a global / swarm scope network is manually attachable by regular containers from workers in swarm mode.
  - `Ingress` boolean — Whether the network is providing the routing-mesh for the swarm cluster.
  - `ConfigFrom` ConfigReference — The config-only network source to provide the configuration for this network.
    - `Network` string — The name of the config-only network that provides the network's configuration. The specified network must be an existing config-only network. Only network names are allowed, not network IDs.
  - `ConfigOnly` boolean — Whether the network is a config-only network. Config-only networks are placeholder networks for network configurations to be used by other networks. Config-only networks cannot be used directly to run containers or services.
  - `Options` object — Network-specific options uses when creating the network.
  - `Labels` object — Metadata specific to the network being created.
  - `Peers` PeerInfo[] — List of peer nodes for an overlay network. This field is only present for overlay networks, and omitted for other network types.
    - `Name` string — ID of the peer-node in the Swarm cluster.
    - `IP` string — IP-address of the peer-node in the Swarm cluster.

---

[API](https://skmtc.net/hexlet/apis/docker-engine-api.md) · [All operations](https://skmtc.net/hexlet/apis/docker-engine-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hexlet/docker-engine-api/versions/7dbd508c79cf/schema)
