GET/v1/blogs/{subdomain}/author

Get the public profile of the blog author

Returns the full public profile of the blog owner, including display name, biography, avatar URL, and social media links.

This is the same author object embedded in the Blog metadata endpoint, exposed here as a standalone resource for convenience.

Parameters

subdomainpathstringrequired
Subdomain of the blog (e.g. alice for alice.writizzy.com). Also accepts the subdomain of a blog configured with a custom domain.

Responses

200
Author profile retrieved successfully
namestringrequired
Display name of the author
avatarUrlstringoptional
URL of the author's avatar image
biostringoptional
Full biography of the author (may contain Markdown)
shortBiostringoptional
Short one-line biography suitable for bylines
socialsobject[]required
List of social media profile links
2 properties
platformstringrequired
Platform identifier (e.g. twitter, linkedin, github, mastodon)
urlstringrequired
Full URL of the social profile

Code example

GET/v1/blogs/{subdomain}/author
curl -X GET \
  -H "Accept: application/json" \
  "https://api.writizzy.com/v1/blogs/<subdomain>/author"