# List connections (/docs/management-api/endpoints/connections/get-connections)

Location: Management API > Endpoints > Connections > List connections

Returns all connections the actor has access to, with optional database filter.

## API reference

### List connections

`GET /v1/connections`

Returns all connections the actor has access to, with optional database filter.

#### Parameters

- `cursor` (query, string | null, optional): Cursor for pagination
- `limit` (query, number, optional): Limit for pagination
- `databaseId` (query, string, optional)

#### Responses

- `200`: Returned list of connections.
- `401`: Missing or invalid authorization token.

## Related pages

- [`Create connection`](https://www.prisma.io/docs/management-api/endpoints/connections/post-connections): Creates a new connection for the specified database.
- [`Delete connection`](https://www.prisma.io/docs/management-api/endpoints/connections/delete-connections-by-id): Deletes the connection with the given ID.
- [`Get connection`](https://www.prisma.io/docs/management-api/endpoints/connections/get-connections-by-id): Returns the connection with the given ID.
- [`Rotate connection credentials`](https://www.prisma.io/docs/management-api/endpoints/connections/post-connections-by-id-rotate): Generates new credentials for the connection with the given ID. Revocation of the previous credentials is best-effort.