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

# Get All Folders

> Get all bookmark folders



## OpenAPI

````yaml GET /bookmark/folders
openapi: 3.0.3
info:
  title: Bookmark API
  version: 1.0.0
  description: API for managing bookmarks and bookmark folders.
servers:
  - url: https://our-secret-api-url.com
security: []
paths:
  /bookmark/folders:
    get:
      description: Get all bookmark folders
      responses:
        '200':
          description: Successfully retrieved bookmark folders
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        name:
                          type: string
                        createdAt:
                          type: string
                          format: date-time
                        userId:
                          type: integer
                        bookmarkCount:
                          type: integer
                  bookmarksWithNoFolders:
                    type: integer
                    description: Number of bookmarks not assigned to any folder
        '500':
          description: Failed to fetch folders
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````