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

> Get full Noon product details by sku (or product URL): title, brand, price and discount, currency, rating, specifications, feature bullets, images and video, colour/model/storage variants, all seller offers (buy-box), the primary seller with its rating, stock, warranty, breadcrumbs and frequently bought together. Region drives currency, pricing, stock and localisation.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/noon/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/noon/products:
    post:
      tags:
        - /noon
      summary: /noon/products
      description: >-
        Get full Noon product details by sku (or product URL): title, brand,
        price and discount, currency, rating, specifications, feature bullets,
        images and video, colour/model/storage variants, all seller offers
        (buy-box), the primary seller with its rating, stock, warranty,
        breadcrumbs and frequently bought together. Region drives currency,
        pricing, stock and localisation.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent sku)
      operationId: __api_noon_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoonProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NoonProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NoonProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/NoonRegion'
          default: uae
        language:
          $ref: '#/components/schemas/NoonLanguage'
          default: en
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    NoonProduct:
      properties:
        '@type':
          type: string
          default: NoonProduct
        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'
        brand_url:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_code:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        feature_bullets:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/NoonProductCardSpec'
          type: array
          default: []
        currency:
          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'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        stock:
          anyOf:
            - type: integer
            - type: 'null'
        is_buyable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_returnable:
          anyOf:
            - type: boolean
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        store_name:
          anyOf:
            - type: string
            - type: 'null'
        partner_code:
          anyOf:
            - type: string
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/NoonSellerRating'
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        offers:
          items:
            $ref: '#/components/schemas/NoonOffer'
          type: array
          default: []
        variant_groups:
          items:
            $ref: '#/components/schemas/NoonVariantGroup'
          type: array
          default: []
        frequently_bought_together:
          items:
            $ref: '#/components/schemas/NoonFbtOffer'
          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
    NoonProductCardSpec:
      properties:
        '@type':
          type: string
          default: NoonProductCardSpec
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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
    NoonOffer:
      properties:
        '@type':
          type: string
          default: NoonOffer
        offer_code:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          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'
        stock:
          anyOf:
            - type: integer
            - type: 'null'
        is_buyable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_returnable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_bestseller:
          anyOf:
            - type: boolean
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        warranty_code:
          anyOf:
            - type: string
            - type: 'null'
        estimated_delivery:
          anyOf:
            - type: string
            - type: 'null'
        nudges:
          items:
            type: string
          type: array
          default: []
        discount_tag_title:
          anyOf:
            - type: string
            - type: 'null'
        discount_tag_code:
          anyOf:
            - type: string
            - type: 'null'
        discount_tags:
          items:
            type: string
          type: array
          default: []
        flags:
          items:
            type: string
          type: array
          default: []
        store_name:
          anyOf:
            - type: string
            - type: 'null'
        partner_code:
          anyOf:
            - type: string
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/NoonSellerRating'
            - type: 'null'
      type: object
    NoonVariantGroup:
      properties:
        '@type':
          type: string
          default: NoonVariantGroup
        name:
          type: string
        code:
          anyOf:
            - type: string
            - type: 'null'
        options:
          items:
            $ref: '#/components/schemas/NoonVariantOption'
          type: array
          default: []
      type: object
      required:
        - name
    NoonFbtOffer:
      properties:
        '@type':
          type: string
          default: NoonFbtOffer
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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'
      type: object
      required:
        - id
    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
    NoonVariantOption:
      properties:
        '@type':
          type: string
          default: NoonVariantOption
        name:
          type: string
        sku:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````