pydo.byoip_prefixes.get()
Generated on 12 Nov 2025
from pydo version
v0.19.0
Description
To get a BYOIP prefix, send a GET request to /v2/byoip_prefixes/$byoip_prefix_uuid.
A successful response will return the details of the specified BYOIP prefix.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
byoip_prefix_uuid |
string | True | The unique identifier for the BYOIP Prefix. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.byoip_prefixes.get(byoip_prefix_uuid="fa3b-1234-5678-90ab-cdef01234567")More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.