Authors list
Get the authors for a blog
url
https://zenblog.com/api/public/blogs/:blogId/authors
method
GET
Response
200
The authors
typescript
{ data: [
{
name: "string",
slug: "string",
image_url?: "string",
twitter?: "string",
website?: "string",
bio?: "string",
}
],
total?: number,
offset?: number,
limit?: number,
}
Usage
// Get the authors for a blog
const { data: authors } = await zenblog.authors.list()