GET
/
v1
/
blog_posts
/
{id}
Blog post details
curl --request GET \
  --url https://api.kajabi.com/v1/blog_posts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "blog_posts",
    "attributes": {
      "title": "<string>",
      "url": "<string>",
      "content": "<string>",
      "slug": "<string>",
      "page_title": "<string>",
      "page_description": "<string>",
      "published_at": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "blog": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      }
    }
  },
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

BlogPost ID

Query Parameters

fields[blog_posts]
string

Partial attributes as specified, e.g. fields[blog_posts]=title

Response

Success, shows details of a blog post

data
object