Retrieve an Existing Tag
- Name
- get
- Type
- /v1/tags/:name
- Description
- Send a - GETrequest to get a tag.
 
Request
Example
curl -X GET "https://api.simplystack.com/v1/tags/web" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0" \
 Response
JSON object with a key named tag which is an array of the following attributes:
Attributes
Example
json
{
  "tag": {
    "name": "web"
  }
}