wordpress_get_term
Get a taxonomy term by ID.
wordpress_get_term
Get term details.
Parameters
2 parameters, 2 required.
| Name | Type | Required | What it is |
|---|---|---|---|
taxonomy | string | yes | Taxonomy name |
id | number | yes | Term ID |
Example call
The smallest valid call, with the required parameters only:
{
"name": "wordpress_get_term",
"arguments": {
"taxonomy": "value",
"id": 123
}
}
Response
{
"success": true,
"taxonomy": "category",
"term": {
"id": 12,
"name": "News",
"slug": "news",
"description": ""
}
}
What it changes
Nothing. It only reads, so there is nothing to approve and nothing to undo.
When it fails
The failures seen most often on real sites in the last 30 days, most common first:
rest_no_route: The WordPress site has no such endpoint. Almost always an old plugin version, or a security plugin blocking the REST API. Update Respira for WordPress on the site and try again.
How long it takes
A typical call takes about 2.1 seconds. 19 in 20 finish within 3.6 seconds. Measured on real sites over the last week, so it includes the site's own hosting.
Availability
Works on any WordPress site, whichever page builder it uses. Available since Respira 1.0.0.
Example Prompts
- "Get term 12 in taxonomy category"
- "Show me term details for tag ID 99"
Related Tools
Was this page helpful?