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

Documentation Index

Fetch the complete documentation index at: https://docs.marblecms.com/llms.txt

Use this file to discover all available pages before exploring further.

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