> ## 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's Instagram Media

> Retrieves the authenticated user's Instagram media posts



## OpenAPI

````yaml GET /instagram/getUserMedia
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:
  /instagram/getUserMedia:
    get:
      summary: Get User's Instagram Media
      description: Retrieves the authenticated user's Instagram media posts
      parameters:
        - name: after
          in: query
          required: false
          schema:
            type: string
          description: Pagination cursor for next page
      responses:
        '200':
          description: Instagram media retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                  paging:
                    type: object
                    properties:
                      cursors:
                        type: object
                      next:
                        type: string
        '400':
          description: Instagram account not connected
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Instagram token expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````