Content APIAuthors
Read an author by slug.
Authorization
ContentApiKey key<token>
Content API key passed as the key query parameter.
In: query
Path Parameters
slug*string
Query Parameters
key*string
Content API key.
include?string
Comma-separated includes. Allowed value is count.posts.
fields?string
Comma-separated field list.
Response Body
application/json
curl -X GET "https://example.com/authors/slug/weekly-update/?key=22444f78447824223cefc48062&include=count.posts&fields=id%2Ctitle%2Cslug%2Curl"{
"authors": [
{
"id": "string",
"name": "string",
"slug": "string",
"profile_image": "http://example.com",
"cover_image": "http://example.com",
"bio": "string",
"website": "http://example.com",
"location": "string",
"facebook": "string",
"twitter": "string",
"url": "http://example.com",
"count": {}
}
]
}