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

# /noon/products/search

> Search Noon products by keyword with rich filters: brand, seller, colour, price range, minimum rating, deals, price drop, new arrivals, noon-fulfilled, product grade, category and category-specific facets, plus sorting. Returns product cards with name, brand, price and discount, currency, rating, images, seller and specifications. Region drives currency and localisation.

**Price:** 5 credits per 50 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/noon/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/noon/products/search:
    post:
      tags:
        - /noon
      summary: /noon/products/search
      description: >-
        Search Noon products by keyword with rich filters: brand, seller,
        colour, price range, minimum rating, deals, price drop, new arrivals,
        noon-fulfilled, product grade, category and category-specific facets,
        plus sorting. Returns product cards with name, brand, price and
        discount, currency, rating, images, seller and specifications. Region
        drives currency and localisation.


        **Price:** 5 credits per 50 results
      operationId: __api_noon_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/NoonProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NoonProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NoonProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/NoonRegion'
          default: uae
        language:
          $ref: '#/components/schemas/NoonLanguage'
          default: en
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/NoonSort'
          default: recommended
        brands:
          items:
            type: string
          type: array
          default: []
        sellers:
          items:
            type: string
          type: array
          default: []
        colours:
          items:
            $ref: '#/components/schemas/NoonColour'
          type: array
          default: []
        price_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_rating:
          anyOf:
            - type: number
              maximum: 5
              minimum: 1
            - type: 'null'
        price_drop:
          anyOf:
            - $ref: '#/components/schemas/NoonPriceDrop'
            - type: 'null'
        new_arrivals:
          anyOf:
            - $ref: '#/components/schemas/NoonNewArrivals'
            - type: 'null'
        fulfilled_by_noon:
          anyOf:
            - type: boolean
            - type: 'null'
        item_condition:
          items:
            $ref: '#/components/schemas/NoonItemCondition'
          type: array
          default: []
        deals:
          items:
            $ref: '#/components/schemas/NoonDeal'
          type: array
          default: []
        grades:
          items:
            $ref: '#/components/schemas/NoonGrade'
          type: array
          default: []
        filters:
          additionalProperties:
            type: string
          type: object
          default: {}
        query:
          type: string
          minLength: 1
        category:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - count
        - query
    NoonProductCard:
      properties:
        '@type':
          type: string
          default: NoonProductCard
        id:
          type: string
        sku:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_code:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        original_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        store_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_rating:
          anyOf:
            - $ref: '#/components/schemas/NoonSellerRating'
            - type: 'null'
        is_bestseller:
          anyOf:
            - type: boolean
            - type: 'null'
        best_seller_rank:
          anyOf:
            - type: integer
            - type: 'null'
        is_buyable:
          anyOf:
            - type: boolean
            - type: 'null'
        nudges:
          items:
            type: string
          type: array
          default: []
        deal_tag:
          anyOf:
            - type: string
            - type: 'null'
        discount_tag_title:
          anyOf:
            - type: string
            - type: 'null'
        discount_tag_code:
          anyOf:
            - type: string
            - type: 'null'
        flags:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/NoonProductCardSpec'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NoonRegion:
      type: string
      enum:
        - uae
        - saudi
        - egypt
        - kuwait
        - bahrain
        - oman
        - qatar
    NoonLanguage:
      type: string
      enum:
        - en
        - ar
    NoonSort:
      type: string
      enum:
        - recommended
        - price_low_to_high
        - price_high_to_low
        - rating
        - best_selling
        - new_arrivals
    NoonColour:
      type: string
      enum:
        - black
        - white
        - blue
        - red
        - green
        - pink
        - purple
        - yellow
        - orange
        - brown
        - beige
        - grey
        - silver
        - gold
        - multi
    NoonPriceDrop:
      type: string
      enum:
        - 365_days
        - 30_days
        - 7_days
    NoonNewArrivals:
      type: string
      enum:
        - 7_days
        - 30_days
        - 60_days
    NoonItemCondition:
      type: string
      enum:
        - new
        - refurbished
    NoonDeal:
      type: string
      enum:
        - deals-generic
        - mega-deal
        - flash-sale-tag
    NoonGrade:
      type: string
      enum:
        - max
        - plus
        - premium
        - basic
        - refurbished
        - refurbished_assured
    NoonSellerRating:
      properties:
        '@type':
          type: string
          default: NoonSellerRating
        partner_code:
          anyOf:
            - type: string
            - type: 'null'
        store_name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        positive_percent:
          anyOf:
            - type: number
            - type: 'null'
        as_described_percent:
          anyOf:
            - type: number
            - type: 'null'
        partner_since_years:
          anyOf:
            - type: integer
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
      type: object
    NoonProductCardSpec:
      properties:
        '@type':
          type: string
          default: NoonProductCardSpec
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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

````