pydo.tags.get()
Generated on 31 Oct 2025
from pydo version
v0.18.0
Description
To retrieve an individual tag, you can send a GET request to
/v2/tags/$TAG_NAME.
This endpoint will only return tagged resources that you are authorized to see.
For example, to see tagged Droplets, include the droplet:read scope.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
tag_id |
string | True | The name of the tag. Tags may contain letters, numbers, colons, dashes, and underscores. There is a limit of 255 characters per tag. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.tags.get(tag_id="awesome")More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.