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

# List Setup Scripts

> List all setup scripts for the authenticated user.



## OpenAPI

````yaml GET /api/v1/setup-scripts
openapi: 3.1.0
info:
  title: Rigbox Public API
  description: >-
    Gateway-owned public API for Rigbox. The gateway composes its local
    lifecycle API with service-owned exported specs.
  contact:
    name: Rigbox
    url: https://rigbox.dev
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.rigbox.dev
    description: Production gateway
security: []
tags:
  - name: Workspaces
  - name: CLI
  - name: Observability
  - name: Auth
  - name: API Keys
  - name: Access Control
  - name: Apps
  - name: App Catalog
  - name: Logs
  - name: AI
  - name: Tools
  - name: Snapshots
  - name: SSH Keys
  - name: Templates
  - name: Setup Scripts
  - name: Service Specs
  - name: Deploy
  - name: Community
  - name: User Settings
  - name: Roadmap
  - name: System
paths:
  /api/v1/setup-scripts:
    get:
      tags:
        - Setup Scripts
      summary: List all setup scripts.
      description: List all setup scripts belonging to the authenticated user.
      operationId: list_setup_scripts
      responses:
        '200':
          description: List of setup scripts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetupScriptsListResponse'
      security:
        - bearer: []
components:
  schemas:
    SetupScriptsListResponse:
      type: object
      required:
        - scripts
      properties:
        scripts:
          type: array
          items:
            $ref: '#/components/schemas/SetupScriptResponse'
    SetupScriptResponse:
      type: object
      required:
        - id
        - user_id
        - name
        - content
        - run_on
        - script_order
        - source
        - created_at
        - updated_at
      properties:
        content:
          type: string
        created_at:
          type: string
        id:
          type: string
        name:
          type: string
        run_on:
          type: string
        script_order:
          type: integer
          format: int32
        source:
          type: string
        updated_at:
          type: string
        user_id:
          type: string
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````