GET Get Tag​
GET
/tags/{id}
Retrieve a single tag by its ID.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Path Parameters
id*
The ID of the tag to retrieve.
Type
Requiredinteger
Responses​
Tag found successfully.
application/json
JSON
{
"tag": {
"id": 0,
"title": "string",
"slug": "string",
"description": "string",
"created_at": "string",
"updated_at": "string"
}
}