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

# Import an app from a store URL



## OpenAPI

````yaml /api-reference/openapi.json post /apps
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:
    post:
      tags:
        - apps
      summary: Import an app from a store URL
      operationId: AppsController_import
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportAppDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    ImportAppDto:
      type: object
      properties:
        url:
          type: string
          example: >-
            https://apps.apple.com/us/app/where-am-i-geoguess-map-quiz/id6657987209
        country:
          type: string
          pattern: ^[a-z]{2}$
          example: de
      required:
        - url
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````