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

> Get all seller offers (buy-box) for a Noon product by sku: each offer's price, original price and discount, currency, stock, warranty, estimated delivery, seller (store name, partner code) and the seller rating breakdown. Region drives currency and pricing.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/noon/products/offers
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/offers:
    post:
      tags:
        - /noon
      summary: /noon/products/offers
      description: >-
        Get all seller offers (buy-box) for a Noon product by sku: each offer's
        price, original price and discount, currency, stock, warranty, estimated
        delivery, seller (store name, partner code) and the seller rating
        breakdown. Region drives currency and pricing.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Product not found or has no offers
        (well-formed but nonexistent sku)
      operationId: __api_noon_products_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoonProductsOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NoonOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NoonProductsOffersPayload:
      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
    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
    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
    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
    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

````