Returns blog posts.
GET
/api/blog
Authorizations
api_key
Requests manipulating data need to supply a CSRF token
TypeAPI Key (header: X-CSRF-Token)
Parameters
Query Parameters
limit
Typeinteger
offset
Typeinteger
Responses
Success
application/json
JSON
{
"totalCount": 42,
"offset": 20,
"entries": [
{
"id": 0,
"title": "string",
"content": "string",
"teaser": "string",
"publishedAt": "string",
"authorName": "string",
"picture": "string"
}
]
}