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

# /xiaomigetapps/apps/categories

> List apps in one category of the global Xiaomi GetApps storefront

**Price:** 1 credit



## OpenAPI

````yaml /openapi/app-stores.json post /api/xiaomigetapps/apps/categories
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/xiaomigetapps/apps/categories:
    post:
      tags:
        - /xiaomigetapps
      summary: /xiaomigetapps/apps/categories
      description: |-
        List apps in one category of the global Xiaomi GetApps storefront

        **Price:** 1 credit
      operationId: __api_xiaomigetapps_apps_categories_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/XiaomigetappsAppsCategoriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/XiaomigetappsAppShort'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    XiaomigetappsAppsCategoriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          $ref: '#/components/schemas/XiaomigetappsCategory'
        count:
          type: integer
          minimum: 1
        region:
          type: string
          maxLength: 2
          minLength: 2
          default: ID
        language:
          type: string
          minLength: 2
          default: en
      type: object
      required:
        - category
        - count
    XiaomigetappsAppShort:
      properties:
        '@type':
          type: string
          default: XiaomigetappsAppShort
        package_name:
          type: string
        app_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        developer:
          anyOf:
            - type: string
            - type: 'null'
        publisher:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - package_name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    XiaomigetappsCategory:
      type: string
      enum:
        - art_and_design
        - auto_and_vehicles
        - beauty
        - books_and_reference
        - business
        - comics
        - communication
        - dating
        - education
        - entertainment
        - events
        - finance
        - food_and_drink
        - health_and_fitness
        - house_and_home
        - libraries_and_demo
        - lifestyle
        - maps_and_navigation
        - medical
        - music_and_audio
        - news_and_magazines
        - parenting
        - personalization
        - photography
        - productivity
        - shopping
        - social
        - sports
        - tools
        - travel_and_local
        - video_players_and_editors
        - weather
        - game_action
        - game_adventure
        - game_arcade
        - game_board
        - game_card
        - game_casino
        - game_casual
        - game_educational
        - game_music
        - game_puzzle
        - game_racing
        - game_role_playing
        - game_simulation
        - game_sports
        - game_strategy
        - game_trivia
        - game_word
    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

````