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

# List the saved scripts

> Return your company's saved scripts as JSON — id, name, and the platforms each one can run on. Use this to discover a `scriptId` before calling `runScript` or `runDeviceScript`.

A script's platforms come from its file extension: `.sh` (macOS + Linux), `.py` (macOS + Linux), `.ps1` (Windows).

To read a script's source, use `getScript`. To see what has actually been run, use `getScriptRuns` instead.

<span className="badge-read">Key: Read</span><span className="badge-company">Scope: Company</span>


## OpenAPI

````yaml https://api.getprimo.com/openapi.json get /scripts
openapi: 3.1.1
info:
  title: Public API - BETA
  description: Read docs on https://docs.getprimo.com/
  version: '1.0'
  contact: {}
servers:
  - url: https://api.getprimo.com
security:
  - apikey: []
tags: []
paths:
  /scripts:
    get:
      tags:
        - Scripts
      summary: List the saved scripts
      description: >-
        Return your company's saved scripts as JSON — id, name, and the
        platforms each one can run on. Use this to discover a `scriptId` before
        calling `runScript` or `runDeviceScript`.


        A script's platforms come from its file extension: `.sh` (macOS +
        Linux), `.py` (macOS + Linux), `.ps1` (Windows).


        To read a script's source, use `getScript`. To see what has actually
        been run, use `getScriptRuns` instead.
      operationId: getScripts
      parameters: []
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetScripts_Output'
components:
  schemas:
    GetScripts_Output:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                description: >-
                  Identifier of the saved script, used as `scriptId` when
                  running it.
                type: number
              name:
                description: >-
                  File name of the script. Its extension decides the interpreter
                  and therefore the platforms: `.sh` (shell, macOS + Linux),
                  `.py` (Python, macOS + Linux), `.ps1` (PowerShell, Windows).
                type: string
              platforms:
                description: Platforms this script can run on, derived from its name.
                type: array
                items:
                  type: string
                  enum:
                    - macos
                    - windows
                    - linux
              createdAt:
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
              updatedAt:
                type: string
                format: date-time
                pattern: >-
                  ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
            required:
              - id
              - name
              - platforms
              - createdAt
              - updatedAt
            additionalProperties: false
      required:
        - data
      additionalProperties: false
  securitySchemes:
    apikey:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: >-
        Use your Primo API key in the Authorization header as `Bearer
        <API_KEY>`.

````