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

# List all authors for the workspace



## OpenAPI

````yaml https://app.blogbowl.io/api/v1/misc/openapi.json get /authors
openapi: 3.0.0
info:
  title: BlogBowl API
  description: >-
    REST API for managing blog pages, posts, authors, newsletters, and
    subscribers.
  version: 1.0.0
  x-copyright: null
servers:
  - url: https://app.blogbowl.io/api/v1
security: []
tags:
  - name: Authors
  - name: Categories
  - name: Emails
  - name: Images
  - name: Newsletters
  - name: Pages
  - name: Posts
  - name: Subscribers
paths:
  /authors:
    get:
      tags:
        - Authors
      summary: List all authors for the workspace
      operationId: get_authors
      parameters:
        - name: active
          in: query
          description: Filter by active flag (defaults to true)
          schema:
            type: boolean
            default: true
        - name: page
          in: query
          description: Page number
          schema:
            type: number
            default: 1
        - name: size
          in: query
          description: 'Items per page (max: 100)'
          schema:
            type: number
            default: 10
      responses:
        '200':
          description: Paginated list of authors
          headers: {}

````