GET
/
v1
/
blog_posts
List blog posts
curl --request GET \
  --url https://api.kajabi.com/v1/blog_posts \
  --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.

Query Parameters

sort
string

Sort order, use: title for descending order use '-' e.g. &sort=-title

page[number]
integer
page[size]
integer

Number of documents

fields[blog_posts]
string

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

filter[title_cont]
string

Filter by title contains, for example ?filter[title_cont]=hello

Response

Success, list of blog posts which the current user may access

data
object[]