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

# Get enriched product details

> Retrieve a single product with all variants (including best offer/listing and order book per variant) and recent activity.

**Rate limit:** 120 requests burst, 60 requests/minute sustained.



## OpenAPI

````yaml /api-reference/openapi.json get /products/v3
openapi: 3.1.0
info:
  title: Pure Public API
  description: >-
    Public API for accessing Pure marketplace data including products, spot
    prices, and more.
  version: 2.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.collectpure.com/
    description: Production server
  - url: https://sandbox.api.collectpure.com/
    description: Sandbox server
security:
  - apiKey: []
tags:
  - name: Root
    description: API information and status
  - name: Products
    description: >-
      Enriched product endpoints — full product details, search, and catalog
      metadata
  - name: Listings
    description: Listing management — create, update, deactivate, list, and view statistics
  - name: Offers
    description: Offer management — create, update, deactivate, list, and view statistics
  - name: Orders
    description: Purchase and sale order management for authenticated organizations
  - name: Marketplace
    description: Spot prices, marketplace statistics, shipping dates, and sitemap data
  - name: Organization
    description: Organization details and settings management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Vault
    description: >-
      Vault shipping — intake shipments, holdings, fulfillment, and outbound
      requests
  - name: Products (Legacy)
    description: Legacy product endpoints — use the enriched Products endpoints instead
  - name: Listings (Legacy)
    description: Legacy listing endpoints — use Orderbook endpoints instead
  - name: Offers (Legacy)
    description: Legacy offer endpoints — use Orderbook endpoints instead
  - name: Execution - Buy
    description: Buy execution — quotes, payment methods, and order placement
  - name: Execution - Sell
    description: Sell execution — quotes, payout methods, and order placement
  - name: Execution
    description: Execution meta — trading status and shared execution resources
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /products/v3:
    get:
      tags:
        - Products
      summary: Get enriched product details
      description: >-
        Retrieve a single product with all variants (including best
        offer/listing and order book per variant) and recent activity.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      parameters:
        - schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
          in: query
          name: id
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                        pattern: >-
                          ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                      title:
                        type: string
                      purity:
                        type: string
                      weight:
                        type: string
                      weightGrams:
                        type: number
                      sku:
                        type: string
                      isCertified:
                        type: boolean
                      isIra:
                        type: boolean
                      material:
                        type: string
                      attributes:
                        type: array
                        items:
                          type: string
                      images:
                        type: array
                        items:
                          type: string
                      manufacturer:
                        anyOf:
                          - type: object
                            properties:
                              title:
                                type: string
                              images:
                                type: array
                                items:
                                  type: string
                              isEsg:
                                type: boolean
                            required:
                              - title
                              - images
                              - isEsg
                            additionalProperties: false
                          - type: 'null'
                      category:
                        anyOf:
                          - type: object
                            properties:
                              title:
                                type: string
                              isNumismatic:
                                type: boolean
                            required:
                              - title
                              - isNumismatic
                            additionalProperties: false
                          - type: 'null'
                      subCategory:
                        anyOf:
                          - type: object
                            properties:
                              title:
                                type: string
                              premiumCalculationType:
                                type: string
                            required:
                              - title
                              - premiumCalculationType
                            additionalProperties: false
                          - type: 'null'
                      certificateProvider:
                        anyOf:
                          - type: object
                            properties:
                              title:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - title
                            additionalProperties: false
                          - type: 'null'
                      variants:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                              pattern: >-
                                ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                            highestOffer:
                              anyOf:
                                - type: object
                                  properties:
                                    id:
                                      type: string
                                      format: uuid
                                      pattern: >-
                                        ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                    price:
                                      type: number
                                    quantity:
                                      type: number
                                    spotPremium:
                                      type: number
                                    spotPremiumDollar:
                                      type: number
                                    expiresAt:
                                      type: string
                                    createdAt:
                                      type: string
                                    updatedAt:
                                      type: string
                                  required:
                                    - id
                                    - price
                                    - quantity
                                    - spotPremium
                                    - spotPremiumDollar
                                    - expiresAt
                                    - createdAt
                                    - updatedAt
                                  additionalProperties: false
                                - type: 'null'
                            lowestListing:
                              anyOf:
                                - type: object
                                  properties:
                                    id:
                                      type: string
                                      format: uuid
                                      pattern: >-
                                        ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                                    price:
                                      type: number
                                    quantity:
                                      type: number
                                    spotPremium:
                                      type: number
                                    spotPremiumDollar:
                                      type: number
                                    expiresAt:
                                      type: string
                                    createdAt:
                                      type: string
                                    updatedAt:
                                      type: string
                                  required:
                                    - id
                                    - price
                                    - quantity
                                    - spotPremium
                                    - spotPremiumDollar
                                    - expiresAt
                                    - createdAt
                                    - updatedAt
                                  additionalProperties: false
                                - type: 'null'
                            images:
                              anyOf:
                                - type: array
                                  items:
                                    type: string
                                - type: 'null'
                            orderBook:
                              type: object
                              properties:
                                listings:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      price:
                                        type: number
                                      qty:
                                        type: number
                                      spotPremium:
                                        type: number
                                      spotPremiumDollar:
                                        type: number
                                    required:
                                      - price
                                      - qty
                                      - spotPremium
                                      - spotPremiumDollar
                                    additionalProperties: false
                                offers:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      price:
                                        type: number
                                      qty:
                                        type: number
                                      spotPremium:
                                        type: number
                                      spotPremiumDollar:
                                        type: number
                                    required:
                                      - price
                                      - qty
                                      - spotPremium
                                      - spotPremiumDollar
                                    additionalProperties: false
                              required:
                                - listings
                                - offers
                              additionalProperties: false
                          required:
                            - id
                            - title
                            - highestOffer
                            - lowestListing
                            - images
                            - orderBook
                          additionalProperties: false
                      recentActivity:
                        type: array
                        items:
                          type: object
                          properties:
                            event:
                              type: string
                            createdAt:
                              type: string
                            price:
                              type: number
                            quantity:
                              type: number
                            spotPremium:
                              type: number
                            spotPremiumDollar:
                              type: number
                          required:
                            - event
                            - createdAt
                            - price
                            - quantity
                            - spotPremium
                            - spotPremiumDollar
                          additionalProperties: false
                    required:
                      - id
                      - title
                      - purity
                      - weight
                      - weightGrams
                      - sku
                      - isCertified
                      - isIra
                      - material
                      - attributes
                      - images
                      - manufacturer
                      - category
                      - subCategory
                      - certificateProvider
                      - variants
                      - recentActivity
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````