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

# Get an app

Returns a single app owned by the calling account. Secrets are never returned
here — use [rotate the signing secret](/reference/app-platform/rotate-secret)
if you need a new one.


## OpenAPI

````yaml get /api/ecommerce-app/{id}
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/ecommerce-app/{id}:
    get:
      tags:
        - Custom Ecommerce Apps · Management
      summary: Get an app
      operationId: EcommerceAppController_get
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````