> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get offer pricing

> Retrieve current offer pricing for an Amazon product, including new, used, and third-party seller listings.



## OpenAPI

````yaml get /v1/amazon/pricing
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/amazon/pricing:
    get:
      tags:
        - Amazon
      summary: Get Amazon offer pricing
      description: >-
        Retrieve current offer pricing for an Amazon product, including new,
        used, and third-party seller listings. Returns price breakdown,
        condition, and seller metadata.
      operationId: getAmazonPricing
      parameters:
        - name: asin
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            description: Amazon ASIN to look up pricing for
        - name: country
          in: query
          required: false
          schema:
            description: Country code for localized results
            type: string
            pattern: ^[a-z]{2}$
        - name: language
          in: query
          required: false
          schema:
            description: Language for results
            type: string
            minLength: 1
        - name: domain
          in: query
          required: false
          schema:
            description: Amazon domain suffix, e.g. com, co.uk, de
            type: string
            pattern: ^[a-z]+(?:\.[a-z]+)?$
        - name: device
          in: query
          required: false
          schema:
            type: string
            enum:
              - desktop
              - mobile
              - tablet
            description: Device profile to emulate
        - name: timeout_ms
          in: query
          required: false
          schema:
            description: Max time to wait, in ms
            type: string
            pattern: ^\d+$
      responses:
        '200':
          description: Current offer pricing details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AmazonPricingResponse'
        '400':
          description: Invalid ASIN or request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Amazon blocked the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Amazon execution backend unavailable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl
            "https://api.scrapio.dev/v1/amazon/pricing?asin=B08N5WRWNW&country=us"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
        - lang: Python
          label: Python
          source: |-
            import os, requests
            resp = requests.get(
                "https://api.scrapio.dev/v1/amazon/pricing",
                headers={"Authorization": f"Bearer {os.environ['SCRAPIO_API_KEY']}"},
                params={"asin": "B08N5WRWNW", "country": "us"},
            )
            print(resp.json())
components:
  schemas:
    AmazonPricingResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - amazon
        page_type:
          type: string
          enum:
            - pricing
        asin:
          anyOf:
            - type: string
            - type: 'null'
        featured_offer:
          anyOf:
            - type: object
              properties:
                seller_name:
                  anyOf:
                    - type: string
                    - type: 'null'
                seller_id:
                  anyOf:
                    - type: string
                    - type: 'null'
                price:
                  anyOf:
                    - type: number
                    - type: 'null'
                currency:
                  anyOf:
                    - type: string
                    - type: 'null'
                shipping_price:
                  anyOf:
                    - type: number
                    - type: 'null'
                condition:
                  anyOf:
                    - type: string
                    - type: 'null'
                condition_notes:
                  anyOf:
                    - type: string
                    - type: 'null'
                is_prime:
                  anyOf:
                    - type: boolean
                    - type: 'null'
                is_fba:
                  anyOf:
                    - type: boolean
                    - type: 'null'
                delivery:
                  anyOf:
                    - type: string
                    - type: 'null'
                seller_rating:
                  anyOf:
                    - type: number
                    - type: 'null'
                seller_rating_count:
                  anyOf:
                    - type: number
                    - type: 'null'
              required:
                - seller_name
                - seller_id
                - price
                - currency
                - shipping_price
                - condition
                - condition_notes
                - is_prime
                - is_fba
                - delivery
                - seller_rating
                - seller_rating_count
              additionalProperties: false
            - type: 'null'
        seller_summary:
          type: object
          properties:
            offer_count:
              anyOf:
                - type: integer
                  minimum: 0
                  maximum: 9007199254740991
                - type: 'null'
            has_amazon:
              anyOf:
                - type: boolean
                - type: 'null'
          required:
            - offer_count
            - has_amazon
          additionalProperties: false
        offers:
          type: array
          items:
            type: object
            properties:
              seller_name:
                anyOf:
                  - type: string
                  - type: 'null'
              seller_id:
                anyOf:
                  - type: string
                  - type: 'null'
              price:
                anyOf:
                  - type: number
                  - type: 'null'
              currency:
                anyOf:
                  - type: string
                  - type: 'null'
              shipping_price:
                anyOf:
                  - type: number
                  - type: 'null'
              condition:
                anyOf:
                  - type: string
                  - type: 'null'
              condition_notes:
                anyOf:
                  - type: string
                  - type: 'null'
              is_prime:
                anyOf:
                  - type: boolean
                  - type: 'null'
              is_fba:
                anyOf:
                  - type: boolean
                  - type: 'null'
              delivery:
                anyOf:
                  - type: string
                  - type: 'null'
              seller_rating:
                anyOf:
                  - type: number
                  - type: 'null'
              seller_rating_count:
                anyOf:
                  - type: number
                  - type: 'null'
            required:
              - seller_name
              - seller_id
              - price
              - currency
              - shipping_price
              - condition
              - condition_notes
              - is_prime
              - is_fba
              - delivery
              - seller_rating
              - seller_rating_count
            additionalProperties: false
        url:
          type: string
          format: uri
      required:
        - provider
        - page_type
        - asin
        - featured_offer
        - seller_summary
        - offers
        - url
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````