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

# Get User Flash Bookmarks

> Retrieves flash bookmarks for the authenticated user



## OpenAPI

````yaml GET /flash/bookmarks/user
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /flash/bookmarks/user:
    get:
      summary: Get User Flash Bookmarks
      description: Retrieves flash bookmarks for the authenticated user
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
          description: Maximum number of bookmarks to return
      responses:
        '200':
          description: Bookmarks retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - bookmarks
                properties:
                  bookmarks:
                    type: array
                    items:
                      $ref: '#/components/schemas/FlashBookmark'
                    description: Array of flash bookmarks
components:
  schemas:
    FlashBookmark:
      type: object
      required:
        - id
        - userId
        - flashId
        - artistId
        - createdAt
      properties:
        id:
          type: string
          description: 'Composite key: `${userId}_${flashId}`'
        userId:
          type: string
          description: ID of the user who bookmarked the flash
        flashId:
          type: string
          description: ID of the bookmarked flash
        artistId:
          type: string
          description: Denormalized artist ID for easier queries
        createdAt:
          type: number
          description: Timestamp when bookmark was created
        notes:
          type: string
          description: Optional user notes about the bookmark
        customTags:
          type: array
          items:
            type: string
          description: Optional user-defined tags

````