> ## 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.

# Retrieve a marketplace app

> Retrieve a single marketplace app by ID or slug. Only published apps are visible. 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/{id}
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/{id}:
    get:
      tags:
        - Marketplace apps
      summary: Retrieve a marketplace app
      description: >-
        Retrieve a single marketplace app by ID or slug. Only published apps are
        visible. Requires the `marketplace_apps` feature to be enabled for the
        team.
      operationId: get-marketplace-app
      parameters:
        - name: id
          in: path
          required: true
          description: The marketplace app ID or slug
          examples:
            Success:
              value: openclaw
          schema:
            type: string
      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_app'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/error_object'
      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.GetMarketplaceApp(ctx, \"openclaw\")\n    if err != nil {\n        log.Fatal(err)\n    }\n    if res.MarketplaceApp != 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.getMarketplaceApp({
                id: "openclaw",
              });

              console.log(result);
            }

            run();
components:
  schemas:
    marketplace_app:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/marketplace_app_data'
    error_object:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                nullable: true
              status:
                type: string
              title:
                type: string
              detail:
                type: string
              source:
                type: object
                properties:
                  pointer:
                    type: string
                  parameter:
                    type: string
              meta:
                type: object
    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

````