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

# List marketplace apps

> Lists the marketplace apps available to deploy on Virtual Machines. Only published apps are returned. Requires the `marketplace_apps` feature to be enabled for the team.



## OpenAPI

````yaml https://spec.speakeasy.com/latitude/latitude/latitude-sh-api-with-code-samples get /marketplace_apps
openapi: 3.0.1
info:
  title: Latitude.sh API
  version: '2023-06-01'
  description: >-
    The Latitude.sh API is a RESTful API to manage your Latitude.sh account. It
    allows you to perform the same actions as the Latitude.sh dashboard.
servers:
  - url: https://api.latitude.sh
    variables:
      latitude_api_key:
        default: <insert your api key here>
  - url: http://api.latitude.sh
    variables:
      latitude_api_key:
        default: <insert your api key here>
security: []
tags:
  - name: API keys
  - name: Baselines (Preview)
    description: >-
      Preview. Available to teams with the `baselines_api` feature flag. The
      shape of these endpoints may change before general availability.
  - name: Billing
  - name: Elastic Ips
  - name: Events
  - name: Firewalls
  - name: IP Addresses
  - name: Kubernetes Clusters
  - name: Marketplace apps
  - name: Operating Systems
  - name: Plans
  - name: Public Networks
  - name: Private Networks
  - name: Projects
  - name: Regions
  - name: Roles
  - name: SSH Keys
  - name: Servers
  - name: Block Storage
  - name: Filesystem Storage
  - name: Object Storage
  - name: Tags
  - name: Teams
  - name: Team members
  - name: Traffic
  - name: User data
  - name: User profile
  - name: VPN Sessions
  - name: Virtual machines
  - name: Virtual machine backups
  - name: Virtual machine restores
paths:
  /marketplace_apps:
    get:
      tags:
        - Marketplace apps
      summary: List marketplace apps
      description: >-
        Lists the marketplace apps available to deploy on Virtual Machines. Only
        published apps are returned. Requires the `marketplace_apps` feature to
        be enabled for the team.
      operationId: list-marketplace-apps
      responses:
        '200':
          description: Success
          content:
            application/vnd.api+json:
              examples:
                Success:
                  value:
                    data:
                      - id: mkapp_x1kg1DegdvZE5
                        type: marketplace_apps
                        attributes:
                          name: OpenClaw
                          slug: openclaw
                          description: >-
                            Personal AI agent gateway with messaging
                            integrations
                          short_description: Personal AI agent gateway
                          category: ai_agents
                          version: 2026.7.20
                          system_requirements:
                            vcpus: 1
                            memory_in_gb: 2
                            storage_in_gb: 10
                            gpu: false
                          deployment_strategy: user_data
                          default_operating_system: ubuntu_24_04_x64_lts
                          compatible_plans:
                            - vm.small
                            - vm.medium
                          access_instructions: >-
                            Connect with: ssh -L 18789:localhost:18789
                            ubuntu@{{PUBLIC_IPV4}}
                          upstream_url: https://github.com/openclaw/openclaw
                          documentation_url: null
                          logo_url: null
                          created_at: '2026-07-20T12:00:00+00:00'
              schema:
                $ref: '#/components/schemas/marketplace_apps'
      security:
        - Bearer: []
      x-codeSamples:
        - lang: go
          label: Go (SDK)
          source: "package main\n\nimport(\n\t\"context\"\n\t\"os\"\n\tlatitudeshgosdk \"github.com/latitudesh/latitudesh-go-sdk\"\n\t\"log\"\n)\n\nfunc main() {\n    ctx := context.Background()\n\n    s := latitudeshgosdk.New(\n        latitudeshgosdk.WithSecurity(os.Getenv(\"LATITUDESH_BEARER\")),\n    )\n\n    res, err := s.MarketplaceApps.ListMarketplaceApps(ctx)\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res.MarketplaceApps != nil {\n        // handle response\n    }\n}"
        - lang: typescript
          label: Typescript (SDK)
          source: |-
            import { Latitudesh } from "latitudesh-typescript-sdk";

            const latitudesh = new Latitudesh({
              bearer: process.env["LATITUDESH_BEARER"] ?? "",
            });

            async function run() {
              const result = await latitudesh.marketplaceApps.listMarketplaceApps();

              console.log(result);
            }

            run();
components:
  schemas:
    marketplace_apps:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/marketplace_app_data'
    marketplace_app_data:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - marketplace_apps
        attributes:
          type: object
          properties:
            name:
              type: string
            slug:
              type: string
            description:
              type: string
              nullable: true
            short_description:
              type: string
              nullable: true
            category:
              type: string
              nullable: true
            version:
              type: string
              nullable: true
            system_requirements:
              type: object
              properties:
                vcpus:
                  type: integer
                  nullable: true
                memory_in_gb:
                  type: integer
                  nullable: true
                storage_in_gb:
                  type: integer
                  nullable: true
                gpu:
                  type: boolean
            deployment_strategy:
              type: string
              enum:
                - user_data
                - image
              description: >-
                How the app is delivered: cloud-init install on a stock OS image
                (user_data) or a pre-built disk image (image)
            default_operating_system:
              type: string
              nullable: true
            compatible_plans:
              type: array
              items:
                type: string
            access_instructions:
              type: string
              nullable: true
            upstream_url:
              type: string
              nullable: true
            documentation_url:
              type: string
              nullable: true
            logo_url:
              type: string
              nullable: true
            created_at:
              type: string
              nullable: true
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````