pydo.tags.get()
Generated on 1 May 2025
from pydo
version
v0.11.0
Description
To retrieve an individual tag, you can send a GET
request to /v2/tags/$TAG_NAME
.
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.