> ## 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 Posts By FolderId

> Get posts by bookmark folder



## OpenAPI

````yaml GET /bookmark/folder/{folderId}/posts
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/folder/{folderId}/posts:
    get:
      description: Get posts by bookmark folder
      parameters:
        - name: folderId
          in: path
          required: true
          schema:
            type: number
        - name: cursor
          in: query
          schema:
            type: string
            format: date-time
        - name: size
          in: query
          schema:
            type: number
            default: 10
      responses:
        '200':
          description: List of posts in the folder
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    postId:
                      type: string
                    title:
                      type: string
                    content:
                      type: string
        '500':
          description: Failed to fetch posts
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````