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

# /amazon/appstore/apps/search

> Search Amazon Appstore apps by keyword with department, device, rating, price, recency and sort filters. Returns id (ASIN), name, developer-agnostic price, rating and image.

**Price:** 20 credits per 60 results



## OpenAPI

````yaml /openapi/app-stores.json post /api/amazon/appstore/apps/search
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/amazon/appstore/apps/search:
    post:
      tags:
        - /amazon/appstore
      summary: /amazon/appstore/apps/search
      description: >-
        Search Amazon Appstore apps by keyword with department, device, rating,
        price, recency and sort filters. Returns id (ASIN), name,
        developer-agnostic price, rating and image.


        **Price:** 20 credits per 60 results
      operationId: __api_amazon_appstore_apps_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AmazonAppstoreAppsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AmazonAppSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AmazonAppstoreAppsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/AmazonDomain'
          default: amazon.com
        query:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        category:
          anyOf:
            - $ref: '#/components/schemas/AmazonAppCategory'
            - type: 'null'
        device:
          anyOf:
            - $ref: '#/components/schemas/AmazonAppDevice'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/AmazonAppSort'
          default: featured
        four_stars_and_up:
          type: boolean
          default: false
        new_within:
          anyOf:
            - $ref: '#/components/schemas/AmazonAppNewWithin'
            - type: 'null'
        min_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
      type: object
      required:
        - query
        - count
    AmazonAppSearchResult:
      properties:
        '@type':
          type: string
          default: AmazonAppSearchResult
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_sponsored:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AmazonDomain:
      type: string
      enum:
        - amazon.com
        - amazon.co.uk
        - amazon.de
        - amazon.fr
        - amazon.it
        - amazon.es
        - amazon.ca
        - amazon.co.jp
        - amazon.com.mx
        - amazon.com.br
        - amazon.in
        - amazon.com.au
        - amazon.nl
        - amazon.se
        - amazon.pl
        - amazon.com.tr
        - amazon.ae
        - amazon.sa
        - amazon.sg
    AmazonAppCategory:
      type: string
      enum:
        - books_and_comics
        - business
        - communication
        - customization
        - education
        - finance
        - food_and_drink
        - games
        - health_and_fitness
        - kids
        - lifestyle
        - local
        - magazines
        - medical
        - movies_and_tv
        - music_and_audio
        - news
        - novelty
        - photo_and_video
        - productivity
        - reference
        - shopping
        - social
        - sports
        - transportation
        - travel
        - utilities
        - weather
    AmazonAppDevice:
      type: string
      enum:
        - fire_tablet
        - fire_phone
        - fire_tv
        - echo_show
        - fire_tv_edition_tv
        - in_car
    AmazonAppSort:
      type: string
      enum:
        - featured
        - price_asc
        - price_desc
        - avg_review
        - best_sellers
    AmazonAppNewWithin:
      type: string
      enum:
        - last_30_days
        - last_90_days
    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

````