> ## 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 Gallery Feed

> Retrieves recent gallery photos for the discovery feed (public endpoint)

<Note>This is not being used currently.</Note>


## OpenAPI

````yaml GET /gallery/feed
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:
  /gallery/feed:
    get:
      summary: Get Gallery Feed
      description: Retrieves recent gallery photos for the discovery feed (public endpoint)
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 100
          description: Number of photos to retrieve
      responses:
        '200':
          description: Feed photos retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  photos:
                    type: array
                    items:
                      type: object

````