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

> List the M.Video shop pickup points that can hand over one product in the requested city, with brand, handover type, address, metro, coordinates, opening hours, pickup date and per-store stock counts. Independent partner pickup-point networks (5post, Yandex, cdek and similar) are priced and counted upstream for the same product and city but their individual points are not covered here.

**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/stores
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/stores:
    post:
      tags:
        - /mvideo
      summary: /mvideo/products/stores
      description: >-
        List the M.Video shop pickup points that can hand over one product in
        the requested city, with brand, handover type, address, metro,
        coordinates, opening hours, pickup date and per-store stock counts.
        Independent partner pickup-point networks (5post, Yandex, cdek and
        similar) are priced and counted upstream for the same product and city
        but their individual points are not covered here.


        **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_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MvideoProductsStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MvideoStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MvideoProductsStoresPayload:
      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
    MvideoStore:
      properties:
        '@type':
          type: string
          default: MvideoStore
        id:
          type: string
        store_product_id:
          type: string
        product_id:
          type: string
        product_url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        branch_name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        metro:
          anyOf:
            - type: string
            - type: 'null'
        metro_id:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        working_schedule:
          anyOf:
            - type: string
            - type: 'null'
        is_open_all_day:
          type: boolean
          default: false
        pickup_time:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        is_mmobile_shop:
          type: boolean
          default: false
        handover_type:
          anyOf:
            - type: string
            - type: 'null'
        pickup_date:
          anyOf:
            - type: string
            - type: 'null'
        delivery_date_min:
          anyOf:
            - type: string
            - type: 'null'
        stock_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        available_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        showcase_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        prepaid_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        prepaid_only:
          anyOf:
            - type: boolean
            - type: 'null'
        store_city_id:
          anyOf:
            - type: string
            - type: 'null'
        city_id:
          anyOf:
            - type: string
            - type: 'null'
        city_name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - store_product_id
        - product_id
        - product_url
    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

````