> ## Documentation Index
> Fetch the complete documentation index at: https://docs.classquill.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Blog Posts

> List blog posts visible to the key: its OWN org's posts always, plus platform
posts when the key has the platform-blog capability. Optional brand/status/target
filters. Includes drafts (this is an authoring surface). Requires `read`.



## OpenAPI

````yaml /openapi.json get /v1/blog-posts
openapi: 3.1.0
info:
  title: EquateIt Public API
  description: >-
    REST API for EquateIt tutoring organisations. Pipe your sessions, invoices,
    payments, tutor earnings, students, and more into your own tools. Most
    endpoints are reads; a focused set of writes (each gated by a *:write scope)
    create or update data, including creating student/tutor/parent accounts.


    Authenticate every request with an org API key:

        Authorization: Token token=ei_live_...

    Mint keys in the EquateIt app under Settings → Developers.
  version: 1.0.0
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: General
  - name: Sessions
  - name: Tutors
  - name: Students & Parents
  - name: Billing
  - name: Curriculum
  - name: Coursework
  - name: Operations
  - name: Pricing
  - name: Bookings
  - name: Blog
  - name: Reports
paths:
  /v1/blog-posts:
    get:
      tags:
        - Blog
      summary: List Blog Posts
      description: >-
        List blog posts visible to the key: its OWN org's posts always, plus
        platform

        posts when the key has the platform-blog capability. Optional
        brand/status/target

        filters. Includes drafts (this is an authoring surface). Requires
        `read`.
      operationId: list_blog_posts_v1_blog_posts_get
      parameters:
        - name: brand
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by brand (equateit | classquill).
            title: Brand
          description: Filter by brand (equateit | classquill).
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by status (draft | published).
            title: Status
          description: Filter by status (draft | published).
        - name: target
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by target (platform | org).
            title: Target
          description: Filter by target (platform | org).
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BlogPost'
                title: Response List Blog Posts V1 Blog Posts Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BlogPost:
      properties:
        id:
          type: string
          title: Id
        target:
          anyOf:
            - type: string
            - type: 'null'
          title: Target
        brand:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand
        organization_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
          title: Excerpt
        content:
          anyOf:
            - type: string
            - type: 'null'
          title: Content
        author:
          anyOf:
            - type: string
            - type: 'null'
          title: Author
        tags:
          items:
            type: string
          type: array
          title: Tags
          default: []
        featured_image:
          anyOf:
            - type: string
            - type: 'null'
          title: Featured Image
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        date:
          anyOf:
            - type: string
            - type: 'null'
          title: Date
        publish_to_website:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Publish To Website
        publish_to_portal:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Publish To Portal
        is_pinned:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Pinned
        published_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Published At
        scheduled_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Scheduled At
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
      title: BlogPost
      description: |-
        A blog post row returned by /v1/blog-posts. `target` is derived from
        organization_id (NULL → 'platform', else 'org').
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````