# List Available Packages

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/available-packages/:
    get:
      summary: List Available Packages
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/Billing
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                    name:
                      type: string
                    package_type:
                      type: string
                    price:
                      type: integer
                    content:
                      type: string
                    license_count:
                      type: integer
                    available_licenses:
                      type: integer
                      nullable: true
                  required:
                    - id
                    - name
                    - package_type
                    - price
                    - content
                    - license_count
                    - available_licenses
                  x-apidog-orders:
                    - id
                    - name
                    - package_type
                    - price
                    - content
                    - license_count
                    - available_licenses
              example:
                - id: 25
                  name: NFR License
                  package_type: NFR
                  price: 0
                  content: "- WatchDog Security University\r\n- Software Security Posture Management\r\n- Cloud Security Posture Management\r\n- Phishing Simulation Platform"
                  license_count: 0
                  available_licenses: 10
                - id: 22
                  name: MSP Protection Basic
                  package_type: MSP
                  price: 1.99
                  content: "- WD University\r\n- Security Benchmarks\r\n- Phishing"
                  license_count: 0
                  available_licenses: null
                - id: 23
                  name: MSP Protection Standard
                  package_type: MSP
                  price: 4.99
                  content: "- WatchDog Security University\r\n- Cloud Security Posture Management\r\n- Software Security Posture Management\r\n- Phishing Simulation Platform"
                  license_count: 0
                  available_licenses: null
          headers: {}
          x-apidog-name: ''
        '403':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                required:
                  - detail
                x-apidog-orders:
                  - detail
              example:
                detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: Unauthenticated
      security:
        - bearer: []
      x-apidog-folder: MSP Guide/API Reference/Billing
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1187388/apis/api-28136256-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
