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

# /appstore/apps

> Get Apple App Store app details by track ID, bundle ID, or App Store URL

**Price:** 10 credits

**⚠️ Common errors:** 412: App not found in the requested storefront



## OpenAPI

````yaml /openapi/app-stores.json post /api/appstore/apps
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/appstore/apps:
    post:
      tags:
        - /appstore
      summary: /appstore/apps
      description: |-
        Get Apple App Store app details by track ID, bundle ID, or App Store URL

        **Price:** 10 credits

        **⚠️ Common errors:** 412: App not found in the requested storefront
      operationId: __api_appstore_apps_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AppstoreAppPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppstoreApp'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AppstoreAppPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        app:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/AppstoreCountry'
          default: us
      type: object
      required:
        - app
    AppstoreApp:
      properties:
        '@type':
          type: string
          default: AppstoreApp
        id:
          type: integer
        bundle_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        developer_id:
          anyOf:
            - type: integer
            - type: 'null'
        developer_name:
          anyOf:
            - type: string
            - type: 'null'
        developer_url:
          anyOf:
            - type: string
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_url:
          anyOf:
            - type: string
            - type: 'null'
        version:
          anyOf:
            - type: string
            - type: 'null'
        release_notes:
          anyOf:
            - type: string
            - type: 'null'
        released_at:
          anyOf:
            - type: string
            - type: 'null'
        current_version_released_at:
          anyOf:
            - type: string
            - type: 'null'
        price:
          type: number
          default: 0
        formatted_price:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          type: boolean
          default: false
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        genre_ids:
          items:
            type: string
          type: array
          default: []
        categories:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          type: integer
          default: 0
        rating_current_version:
          anyOf:
            - type: number
            - type: 'null'
        rating_count_current_version:
          type: integer
          default: 0
        content_rating:
          anyOf:
            - type: string
            - type: 'null'
        advisories:
          items:
            type: string
          type: array
          default: []
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        minimum_os_version:
          anyOf:
            - type: string
            - type: 'null'
        supported_devices:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        screenshots:
          items:
            type: string
          type: array
          default: []
        has_in_app_purchases:
          type: boolean
          default: false
        in_app_purchases:
          items:
            $ref: '#/components/schemas/AppstoreInAppPurchase'
          type: array
          default: []
        privacy:
          items:
            $ref: '#/components/schemas/AppstorePrivacyType'
          type: array
          default: []
        copyright:
          anyOf:
            - type: string
            - type: 'null'
        is_game_center_enabled:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AppstoreCountry:
      type: string
      enum:
        - us
        - gb
        - ca
        - au
        - de
        - fr
        - it
        - es
        - nl
        - se
        - jp
        - kr
        - cn
        - in
        - br
        - mx
        - ru
        - tr
        - pl
        - ae
        - sa
        - sg
        - hk
        - tw
        - id
        - th
        - vn
        - ph
        - my
        - za
    AppstoreInAppPurchase:
      properties:
        '@type':
          type: string
          default: AppstoreInAppPurchase
        name:
          type: string
        price:
          type: string
      type: object
      required:
        - name
        - price
    AppstorePrivacyType:
      properties:
        '@type':
          type: string
          default: AppstorePrivacyType
        identifier:
          type: string
        detail:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - identifier
        - title
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````