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

# /myntra/products

> Get full Myntra product details by product (style) ID or product URL: name, brand, gender, category, colour, MRP, price, discount, returnability/EMI/COD flags, return period, country of origin, manufacturer, description, fit, materials & care, style note, images, video, size chart, rating with per-star breakdown, available sizes with inventory, sellers, colour variants, bank/promo offers and a full specification attribute list.

**Price:** 10 credits

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent product ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/myntra/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/myntra/products:
    post:
      tags:
        - /myntra
      summary: /myntra/products
      description: >-
        Get full Myntra product details by product (style) ID or product URL:
        name, brand, gender, category, colour, MRP, price, discount,
        returnability/EMI/COD flags, return period, country of origin,
        manufacturer, description, fit, materials & care, style note, images,
        video, size chart, rating with per-star breakdown, available sizes with
        inventory, sellers, colour variants, bank/promo offers and a full
        specification attribute list.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent product ID)
      operationId: __api_myntra_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MyntraProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MyntraProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MyntraProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    MyntraProduct:
      properties:
        '@type':
          type: string
          default: MyntraProduct
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_alias:
          anyOf:
            - type: string
            - type: 'null'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        article_type:
          anyOf:
            - type: string
            - type: 'null'
        sub_category:
          anyOf:
            - type: string
            - type: 'null'
        master_category:
          anyOf:
            - type: string
            - type: 'null'
        colour:
          anyOf:
            - type: string
            - type: 'null'
        mrp:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        discount_label:
          anyOf:
            - type: string
            - type: 'null'
        is_returnable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_exchangeable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_out_of_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        cod_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        emi_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        country_of_origin:
          anyOf:
            - type: string
            - type: 'null'
        manufacturer:
          anyOf:
            - type: string
            - type: 'null'
        size_fit:
          anyOf:
            - type: string
            - type: 'null'
        materials_care:
          anyOf:
            - type: string
            - type: 'null'
        style_note:
          anyOf:
            - type: string
            - type: 'null'
        return_period:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        size_chart_url:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_image_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_distribution:
          items:
            $ref: '#/components/schemas/MyntraProductRatingDistribution'
          type: array
          default: []
        sizes:
          items:
            $ref: '#/components/schemas/MyntraProductSize'
          type: array
          default: []
        sellers:
          items:
            $ref: '#/components/schemas/MyntraProductSeller'
          type: array
          default: []
        attributes:
          items:
            $ref: '#/components/schemas/MyntraProductAttribute'
          type: array
          default: []
        colour_variants:
          items:
            $ref: '#/components/schemas/MyntraProductColourVariant'
          type: array
          default: []
        offers:
          items:
            $ref: '#/components/schemas/MyntraProductOffer'
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MyntraProductRatingDistribution:
      properties:
        '@type':
          type: string
          default: MyntraProductRatingDistribution
        rating:
          type: integer
        count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - rating
    MyntraProductSize:
      properties:
        '@type':
          type: string
          default: MyntraProductSize
        sku_id:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        inventory_count:
          anyOf:
            - type: integer
            - type: 'null'
        mrp:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - sku_id
    MyntraProductSeller:
      properties:
        '@type':
          type: string
          default: MyntraProductSeller
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        fssai_number:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        pincode:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    MyntraProductAttribute:
      properties:
        '@type':
          type: string
          default: MyntraProductAttribute
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    MyntraProductColourVariant:
      properties:
        '@type':
          type: string
          default: MyntraProductColourVariant
        id:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    MyntraProductOffer:
      properties:
        '@type':
          type: string
          default: MyntraProductOffer
        type:
          anyOf:
            - type: string
            - type: 'null'
        action:
          anyOf:
            - type: string
            - type: 'null'
      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

````