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

# Probe whether an app is published in a storefront



## OpenAPI

````yaml /api-reference/openapi.json get /apps/{id}/market-availability
openapi: 3.0.0
info:
  title: asobeast API
  description: Self hosted ASO toolkit API
  version: 0.4.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /apps/{id}/market-availability:
    get:
      tags:
        - apps
      summary: Probe whether an app is published in a storefront
      operationId: AppsController_marketAvailability
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: country
          required: true
          in: query
          schema:
            type: string
            pattern: ^[a-z]{2}$
            example: de
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````