To retrieve an individual tag, you can send a GET
request to /v2/tags/$TAG_NAME
.
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. |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.tags.get(tag_id="awesome")
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.