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

> Search M.Video products by keyword. Returns id, url, name, final price, struck old price, discount percent, cashback bonus, promo badge, availability status, rating, review count and images, priced and stocked for the requested city.

**Price:** 1 credit

**⚠️ Common errors:** 422: A facet id or option in filters is not exposed for this query, or the city id is unknown



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/mvideo/products/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/mvideo/products/search:
    post:
      tags:
        - /mvideo
      summary: /mvideo/products/search
      description: >-
        Search M.Video products by keyword. Returns id, url, name, final price,
        struck old price, discount percent, cashback bonus, promo badge,
        availability status, rating, review count and images, priced and stocked
        for the requested city.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: A facet id or option in filters is not
        exposed for this query, or the city id is unknown
      operationId: __api_mvideo_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MvideoProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MvideoProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MvideoProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
          default: CityCZ_975
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/MvideoSort'
          default: popularity
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        filters:
          items:
            $ref: '#/components/schemas/MvideoFilterInput'
          type: array
          default: []
        query:
          type: string
          minLength: 1
      type: object
      required:
        - count
        - query
    MvideoProductCard:
      properties:
        '@type':
          type: string
          default: MvideoProductCard
        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'
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MvideoSort:
      type: string
      enum:
        - popularity
        - price_asc
        - price_desc
    MvideoFilterInput:
      properties:
        id:
          type: string
          minLength: 1
        values:
          items:
            type: string
          type: array
          minItems: 1
      type: object
      required:
        - id
        - values
    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

````