/v1/blogs/{subdomain}/tagsReturns all tags that have been applied to at least one published post on this blog, ordered by usage count descending (most-used tag first). Use the `slug` field from a tag to filter posts by that tag via the `tag` query parameter of the List Posts endpoint.
| Name | In | Type | Description |
|---|---|---|---|
subdomain* | path | string | Subdomain of the blog (e.g. `alice` for `alice.writizzy.com`) |
Tags ordered by number of posts (most-used first)
Human-readable tag name
URL-safe slug — use as the `tag` query parameter in GET /posts to filter by this tag
Optional description of what the tag covers
URL of the tag's cover image
Number of published posts using this tag
/v1/blogs/{subdomain}/tagscurl -X GET \
-H "Accept: application/json" \
"http://localhost:8080/v1/blogs/<subdomain>/tags"/v1/blogs/{subdomain}/tagscurl -X GET \
-H "Accept: application/json" \
"http://localhost:8080/v1/blogs/<subdomain>/tags"