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

> Get one M.Video product by id or product URL: name, brand, category, description, final price, struck old price, discount percent, cashback bonus, promo badge, availability and prepayment flags, seller identity with INN and OGRN, marketplace offer counters, rating, review count, images and video, priced and stocked for the requested city.

**Price:** 1 credit

**⚠️ Common errors:** 412: No such product id in the M.Video catalogue, 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
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:
    post:
      tags:
        - /mvideo
      summary: /mvideo/products
      description: >-
        Get one M.Video product by id or product URL: name, brand, category,
        description, final price, struck old price, discount percent, cashback
        bonus, promo badge, availability and prepayment flags, seller identity
        with INN and OGRN, marketplace offer counters, rating, review count,
        images and video, priced and stocked for the requested city.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No such product id in the M.Video catalogue,
        422: The input carries no M.Video product id, or the city id is unknown
      operationId: __api_mvideo_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MvideoProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MvideoProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MvideoProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
          default: CityCZ_975
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    MvideoProduct:
      properties:
        '@type':
          type: string
          default: MvideoProduct
        id:
          type: string
        url:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        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
        show_case:
          type: boolean
          default: false
        available_only_in_retail_store:
          type: boolean
          default: false
        is_prepayment:
          type: boolean
          default: false
        is_cannot_be_exchanged:
          type: boolean
          default: false
        is_preorder:
          type: boolean
          default: false
        is_new:
          type: boolean
          default: false
        is_last_chance:
          type: boolean
          default: false
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        seller:
          anyOf:
            - type: string
            - type: 'null'
        seller_brand_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_inn:
          anyOf:
            - type: string
            - type: 'null'
        seller_ogrn:
          anyOf:
            - type: string
            - type: 'null'
        seller_address:
          anyOf:
            - type: string
            - type: 'null'
        seller_phone:
          anyOf:
            - type: string
            - type: 'null'
        seller_work_schedule:
          anyOf:
            - type: string
            - type: 'null'
        is_main_offer:
          anyOf:
            - type: boolean
            - type: 'null'
        other_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        main_offer_id:
          anyOf:
            - type: string
            - type: 'null'
        main_offer_alias:
          anyOf:
            - type: string
            - type: 'null'
        material_source:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        used_product_type:
          anyOf:
            - type: string
            - type: 'null'
        material_cis_number:
          anyOf:
            - type: string
            - type: 'null'
        weight:
          anyOf:
            - type: number
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          type: integer
          default: 0
        is_mprime_subscription:
          type: boolean
          default: false
        sale_legal:
          anyOf:
            - type: boolean
            - type: 'null'
        sublicense:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        images_3d:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        city_id:
          anyOf:
            - type: string
            - type: 'null'
        city_name:
          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

````