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

# /mvideo/products/similar

> Products M.Video recommends alongside one product, grouped by the shelf they come from. Returns id, url, name, brand, category, seller, final price, struck old price, discount percent, cashback bonus, availability, rating and images, priced for the requested city.

**Price:** 1 credit

**⚠️ Common errors:** 422: The input carries no M.Video product id, or the city id is unknown



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/mvideo/products/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/mvideo/products/similar:
    post:
      tags:
        - /mvideo
      summary: /mvideo/products/similar
      description: >-
        Products M.Video recommends alongside one product, grouped by the shelf
        they come from. Returns id, url, name, brand, category, seller, final
        price, struck old price, discount percent, cashback bonus, availability,
        rating and images, priced for the requested city.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: The input carries no M.Video product id, or
        the city id is unknown
      operationId: __api_mvideo_products_similar_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MvideoProductsSimilarPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MvideoRelatedProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MvideoProductsSimilarPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
          default: CityCZ_975
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - product
        - count
    MvideoRelatedProduct:
      properties:
        '@type':
          type: string
          default: MvideoRelatedProduct
        id:
          type: string
        url:
          type: string
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        old_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        bonus_amount:
          anyOf:
            - type: integer
            - type: 'null'
        badge:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        sold_out:
          type: boolean
          default: false
        is_new:
          type: boolean
          default: false
        is_original:
          anyOf:
            - type: boolean
            - type: 'null'
        is_preorder:
          type: boolean
          default: false
        is_last_chance:
          type: boolean
          default: false
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          type: integer
          default: 0
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        city_id:
          anyOf:
            - type: string
            - type: 'null'
        city_name:
          anyOf:
            - type: string
            - type: 'null'
        set_title:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        seller:
          anyOf:
            - type: string
            - type: 'null'
        material_source:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````