Skip to main content
GET
/
v1
/
authors
/
{identifier}
Get an author
curl --request GET \
  --url https://api.marblecms.com/v1/authors/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "author": {
    "id": "clx123abc",
    "name": "John Doe",
    "image": "https://cdn.example.com/avatar.jpg",
    "slug": "john-doe",
    "bio": "Technical writer and developer",
    "role": "Editor",
    "socials": [
      {
        "url": "https://twitter.com/johndoe",
        "platform": "twitter"
      }
    ],
    "count": {
      "posts": 12
    }
  }
}

Authorizations

Authorization
string
header
required

Your Marble API key

Path Parameters

identifier
string
required

Author ID or slug

Example:

"john-doe"

Response

The requested author

author
object
required