Skip to main content
GET
/
tags
List tags
curl --request GET \
  --url https://admin.aeoliancms.com/api/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in format ak_<48-hex-chars>

Query Parameters

product_slug
string

Filter tags by product slug

Response

200 - application/json

List of tags with product counts

tags
object[]