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

# List articles

> Paginated list of articles for the workspace. Supports search, status, and collection filters.



## OpenAPI

````yaml /api-reference/openapi.json get /api/content/articles
openapi: 3.1.0
info:
  title: Tedro API
  version: 1.0.0
  description: REST API for the Tedro communication operations platform.
servers:
  - url: https://api.tedro.io
    description: Production
security:
  - sessionCookie: []
    workspaceId: []
paths:
  /api/content/articles:
    get:
      tags:
        - Content
      summary: List articles
      description: >-
        Paginated list of articles for the workspace. Supports search, status,
        and collection filters.
      parameters:
        - schema:
            type: string
            description: Page number (default 1)
          required: false
          description: Page number (default 1)
          name: page
          in: query
        - schema:
            type: string
            description: Page size (default 25, max 100)
          required: false
          description: Page size (default 25, max 100)
          name: limit
          in: query
        - schema:
            type: string
            description: Case-insensitive title search
          required: false
          description: Case-insensitive title search
          name: search
          in: query
        - schema:
            type: string
            enum:
              - draft
              - published
          required: false
          name: status
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: collectionId
          in: query
      responses:
        '200':
          description: Article list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArticleListResponse'
        '401':
          description: Unauthorized - missing or invalid session cookie
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden - insufficient role (admin required)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - sessionCookie: []
          workspaceId: []
components:
  schemas:
    ArticleListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ArticleResponse'
        total:
          type: integer
        page:
          type: integer
        limit:
          type: integer
      required:
        - items
        - total
        - page
        - limit
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    ArticleResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
          enum:
            - article
        title:
          type: string
        slug:
          type: string
        body:
          type:
            - string
            - 'null'
        description:
          type:
            - string
            - 'null'
        visibility:
          type: string
          enum:
            - public
            - internal
        status:
          type: string
          enum:
            - draft
            - published
        workspaceId:
          type: string
          format: uuid
        publishedAt:
          type:
            - string
            - 'null'
        createdAt:
          type: string
        updatedAt:
          type: string
      required:
        - id
        - type
        - title
        - slug
        - body
        - description
        - visibility
        - status
        - workspaceId
        - createdAt
        - updatedAt
      additionalProperties: {}
  securitySchemes:
    sessionCookie:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: Session cookie set by Better Auth on sign-in.
    workspaceId:
      type: apiKey
      in: header
      name: x-workspace-id
      description: Workspace UUID. Required on all /api/* endpoints.

````