> ## 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.

# Add Instagram Photos to Gallery

> Imports photos from Instagram to the artist's gallery



## OpenAPI

````yaml POST /gallery/add-instagram-photos
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/add-instagram-photos:
    post:
      summary: Add Instagram Photos to Gallery
      description: Imports photos from Instagram to the artist's gallery
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - photos
              properties:
                photos:
                  type: array
                  items:
                    type: object
      responses:
        '201':
          description: Instagram photos added successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  addedPhotos:
                    type: number
                  photos:
                    type: array
                    items:
                      type: object

````