> ## 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 Instagram OAuth URL

> Generates and returns the Instagram OAuth authorization URL for user login



## OpenAPI

````yaml GET /auth/instagram/login
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:
  /auth/instagram/login:
    get:
      summary: Get Instagram OAuth URL
      description: >-
        Generates and returns the Instagram OAuth authorization URL for user
        login
      responses:
        '200':
          description: Instagram OAuth URL generated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    description: The Instagram OAuth authorization URL
        '500':
          description: Server configuration error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````