pydo.registries.get()
Generated on 16 Jan 2026
from pydo version
v0.24.0
Description
To get information about any container registry in your account, send a GET request to /v2/registries/{registry_name}.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
registry_name |
string | True | The name of a container registry. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.registries.get(registry_name="example")More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.