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

# /aptoide/apps/similar

> List apps similar to an Aptoide app by package name or app id

**Price:** 5 credits per 50 results

**⚠️ Common errors:** 412: App not found



## OpenAPI

````yaml /openapi/app-stores.json post /api/aptoide/apps/similar
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/aptoide/apps/similar:
    post:
      tags:
        - /aptoide
      summary: /aptoide/apps/similar
      description: |-
        List apps similar to an Aptoide app by package name or app id

        **Price:** 5 credits per 50 results

        **⚠️ Common errors:** 412: App not found
      operationId: __api_aptoide_apps_similar_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AptoideAppsSimilarPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AptoideApp'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AptoideAppsSimilarPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        app:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - app
        - count
    AptoideApp:
      properties:
        '@type':
          type: string
          default: AptoideApp
        id:
          type: integer
        name:
          type: string
        package:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        added_at:
          anyOf:
            - type: string
            - type: 'null'
        modified_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        whats_new:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        screenshots:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        mobile_url:
          anyOf:
            - type: string
            - type: 'null'
        download_count:
          anyOf:
            - type: integer
            - type: 'null'
        play_download_count:
          anyOf:
            - type: integer
            - type: 'null'
        age:
          anyOf:
            - $ref: '#/components/schemas/AptoideAppAge'
            - type: 'null'
        developer:
          anyOf:
            - $ref: '#/components/schemas/AptoideDeveloper'
            - type: 'null'
        store:
          anyOf:
            - $ref: '#/components/schemas/AptoideStore'
            - type: 'null'
        file:
          anyOf:
            - $ref: '#/components/schemas/AptoideAppFile'
            - type: 'null'
        rating:
          anyOf:
            - $ref: '#/components/schemas/AptoideAppRating'
            - type: 'null'
        play_rating:
          anyOf:
            - $ref: '#/components/schemas/AptoideAppRating'
            - type: 'null'
      type: object
      required:
        - id
        - name
        - package
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AptoideAppAge:
      properties:
        '@type':
          type: string
          default: AptoideAppAge
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: string
            - type: 'null'
        pegi:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AptoideDeveloper:
      properties:
        '@type':
          type: string
          default: AptoideDeveloper
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        privacy_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AptoideStore:
      properties:
        '@type':
          type: string
          default: AptoideStore
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        badge:
          anyOf:
            - type: string
            - type: 'null'
        apps_count:
          anyOf:
            - type: integer
            - type: 'null'
        subscriber_count:
          anyOf:
            - type: integer
            - type: 'null'
        download_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    AptoideAppFile:
      properties:
        '@type':
          type: string
          default: AptoideAppFile
        version_name:
          anyOf:
            - type: string
            - type: 'null'
        version_code:
          anyOf:
            - type: integer
            - type: 'null'
        md5:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: integer
            - type: 'null'
        sha1:
          anyOf:
            - type: string
            - type: 'null'
        signature_owner:
          anyOf:
            - type: string
            - type: 'null'
        min_sdk:
          anyOf:
            - type: integer
            - type: 'null'
        screen:
          anyOf:
            - type: string
            - type: 'null'
        gles:
          anyOf:
            - type: integer
            - type: 'null'
        abis:
          items:
            type: string
          type: array
          default: []
        densities:
          items:
            items:
              type: integer
            type: array
          type: array
          default: []
        malware_rank:
          anyOf:
            - type: string
            - type: 'null'
        download_url:
          anyOf:
            - type: string
            - type: 'null'
        download_url_alt:
          anyOf:
            - type: string
            - type: 'null'
        added_at:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        used_features:
          items:
            type: string
          type: array
          default: []
        used_permissions:
          items:
            type: string
          type: array
          default: []
      type: object
    AptoideAppRating:
      properties:
        '@type':
          type: string
          default: AptoideAppRating
        avg:
          anyOf:
            - type: number
            - type: 'null'
        count:
          type: integer
          default: 0
        votes:
          items:
            $ref: '#/components/schemas/AptoideRatingVote'
          type: array
          default: []
      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
    AptoideRatingVote:
      properties:
        '@type':
          type: string
          default: AptoideRatingVote
        value:
          type: integer
        count:
          type: integer
      type: object
      required:
        - value
        - count
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````