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

Name In Type Description
subdomain*
pathstringSubdomain of the blog (e.g. `alice` for `alice.writizzy.com`). Also accepts the subdomain of a blog configured with a custom domain.

Responses

200Author 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

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" \
  "http://localhost:8080/v1/blogs/<subdomain>/author"
GET/v1/blogs/{subdomain}/author
curl -X GET \
  -H "Accept: application/json" \
  "http://localhost:8080/v1/blogs/<subdomain>/author"