Get Blog Post by ID
GET/blogs/posts/post/:postId
The "Get Blog Post by ID" API returns a single published blog post, including its content/body, for the given location.
Request
Version stringrequired
API Version
Available options
v3postId stringrequired
Identifier of the blog post to fetch
locationId stringrequired
Sub-account (location) identifier
Successful response
- application/json
- Schema
- Example (auto)
Schema
blogPostobjectrequired
Object containing the requested published blog post with its content
{
"blogPost": {
"_id": "66c381b38be80858b9af62b6",
"title": "How to grow your agency",
"rawHTML": "<p>...</p>"
}
}