pydo.databases.get_connection_pool()
Generated on 16 Jan 2026
from pydo version
v0.24.0
Description
To show information about an existing connection pool for a PostgreSQL database cluster, send a GET request to /v2/databases/$DATABASE_ID/pools/$POOL_NAME.
The response will be a JSON object with a pool key.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
database_cluster_uuid |
string | True | A unique identifier for a database cluster. | |
pool_name |
string | True | The name used to identify the connection pool. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
get_resp = client.databases.get_connection_pool(database_cluster_uuid="a7aba8a", pool_name="backend-pool") More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.