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

# /samsunggalaxy/apps

> Get Samsung Galaxy Store app details by Android package name or app URL

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/app-stores.json post /api/samsunggalaxy/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/samsunggalaxy/apps:
    post:
      tags:
        - /samsunggalaxy
      summary: /samsunggalaxy/apps
      description: |-
        Get Samsung Galaxy Store app details by Android package name or app URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: App not found in the requested storefront
      operationId: __api_samsunggalaxy_apps_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SamsunggalaxyAppPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SamsunggalaxyApp'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SamsunggalaxyAppPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        package:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/SamsunggalaxyCountry'
          default: us
      type: object
      required:
        - package
    SamsunggalaxyApp:
      properties:
        '@type':
          type: string
          default: SamsunggalaxyApp
        package:
          type: string
        content_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        feature_image:
          anyOf:
            - type: string
            - type: 'null'
        youtube_url:
          anyOf:
            - type: string
            - type: 'null'
        whats_new:
          anyOf:
            - type: string
            - type: 'null'
        version:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        developer:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_path:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          type: integer
          default: 0
        age_rating:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        discount_price:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          type: boolean
          default: false
        is_discounted:
          type: boolean
          default: false
        has_in_app_purchases:
          type: boolean
          default: false
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        deeplink_url:
          anyOf:
            - type: string
            - type: 'null'
        bridge_url:
          anyOf:
            - type: string
            - type: 'null'
        support_email:
          anyOf:
            - type: string
            - type: 'null'
        developer_url:
          anyOf:
            - type: string
            - type: 'null'
        privacy_policy_url:
          anyOf:
            - type: string
            - type: 'null'
        data_safety_collected:
          items:
            type: string
          type: array
          default: []
        data_safety_shared:
          items:
            type: string
          type: array
          default: []
        permissions:
          items:
            type: string
          type: array
          default: []
        screenshots:
          items:
            type: string
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/SamsunggalaxySeller'
            - type: 'null'
        also_installed_apps:
          items:
            $ref: '#/components/schemas/SamsunggalaxyRelatedApp'
          type: array
          default: []
        similar_apps:
          items:
            $ref: '#/components/schemas/SamsunggalaxyRelatedApp'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/SamsunggalaxyReview'
          type: array
          default: []
      type: object
      required:
        - package
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SamsunggalaxyCountry:
      type: string
      enum:
        - us
        - gb
        - de
        - fr
        - it
        - es
        - nl
        - kr
        - jp
        - in
        - br
        - ca
        - au
        - tr
        - pl
        - id
        - th
        - vn
        - ph
        - my
    SamsunggalaxySeller:
      properties:
        '@type':
          type: string
          default: SamsunggalaxySeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        copyright_holder:
          anyOf:
            - type: string
            - type: 'null'
        trade_name:
          anyOf:
            - type: string
            - type: 'null'
        representation:
          anyOf:
            - type: string
            - type: 'null'
        registration_number:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        support_email:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        privacy_policy_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SamsunggalaxyRelatedApp:
      properties:
        '@type':
          type: string
          default: SamsunggalaxyRelatedApp
        package:
          type: string
        content_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        developer:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          type: boolean
          default: false
        relation:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - package
        - name
    SamsunggalaxyReview:
      properties:
        '@type':
          type: string
          default: SamsunggalaxyReview
        author:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        is_seller_reply:
          type: boolean
          default: false
      type: object
    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

````