Tags list

Get the tags for a blog

url

https://zenblog.com/api/public/blogs/:blogId/tags

method

GET


Response

200

The tags

typescript

{
  data: [
  {
    name: "string",
    slug: "string",
  }
],
  total?: number,
  offset?: number,
  limit?: number,
}

Usage

// Get the tags for a blog
const { data: tags } = await zenblog.tags.list()