Content APIAuthors
Read an author by id.
Authorization
ContentApiKey key<token>
Content API key passed as the key query parameter.
In: query
Path Parameters
id*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/64f0f2c75b8d5b0012345678/?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": {}
}
]
}