> ## 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/brands/products

> List all Myntra products for a given brand. Returns product cards (id, name, brand, gender, category, colour, MRP, price, discount, rating, available sizes, image and URL) with filters for colour, size, gender, category and price range, plus result ordering.

**Price:** 20 credits per 10 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/myntra/brands/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/brands/products:
    post:
      tags:
        - /myntra
      summary: /myntra/brands/products
      description: >-
        List all Myntra products for a given brand. Returns product cards (id,
        name, brand, gender, category, colour, MRP, price, discount, rating,
        available sizes, image and URL) with filters for colour, size, gender,
        category and price range, plus result ordering.


        **Price:** 20 credits per 10 results
      operationId: __api_myntra_brands_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MyntraBrandsProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MyntraProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MyntraBrandsProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        brand:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          anyOf:
            - $ref: '#/components/schemas/MyntraSort'
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        gender:
          anyOf:
            - $ref: '#/components/schemas/MyntraGender'
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
      type: object
      required:
        - brand
        - count
    MyntraProductCard:
      properties:
        '@type':
          type: string
          default: MyntraProductCard
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          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'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        sizes:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MyntraSort:
      type: string
      enum:
        - new
        - popularity
        - discount
        - price_asc
        - price_desc
        - customer_rating
    MyntraGender:
      type: string
      enum:
        - men
        - women
        - boys
        - girls
        - unisex
    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

````