Skip to main content

Product Tags API

List Product Tags

GET /products/tags

There are no parameters required for this endpoint.

curl "https://example-store.com/wp-json/wc/store/v1/products/tags"

Example response:

[
{
"id": 1,
"name": "Test Tag",
"slug": "test-tag",
"description": "",
"parent": 0,
"count": 1
},
{
"id": 2,
"name": "Another Tag",
"slug": "another-tag",
"description": "",
"parent": 0,
"count": 1
}
]