Get blog article​
GET
/blogs/{blog_id}/articles/{article_id}
Retrieves a single article’s content and metadata by its identifier.
Authorizations​
bearerToken|siteContext +
bearerToken
Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.
TypeHTTP (bearer)
siteContext
Identifier of the site context when authenticating with a personal access token.
TypeAPI Key (header: X-Nimbu-Site)
or
siteToken
Site-scoped API token that already encodes the site context.
TypeHTTP (bearer)
Parameters​
Path Parameters
blog_id*
Blog identifier
Typestring
Requiredarticle_id*
Article identifier (id or slug)
Typestring
RequiredResponses​
article returned
application/json
JSON
{
"id": "string",
"url": "string",
"public_url": "string",
"fullpath": "string",
"slug": "string",
"title": "string",
"text_content": "string",
"text_excerpt": "string",
"status": "string",
"publish_at": "string",
"locales": [
"string"
],
"header": {
},
"thumbnail": {
},
"og_image": {
},
"og_fb_publisher": "string",
"og_tw_creator": "string",
"tags": [
"string"
],
"slugified_tags": [
"string"
],
"next_article": {
},
"previous_article": {
},
"author": "string",
"translations": {
"additionalProperties": {
}
},
"created_at": "string",
"updated_at": "string"
}