> ## 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 product catalog metadata

> Retrieve all product catalog metadata in a single request — categories, subcategories, manufacturers, materials, attributes, and certificate providers.

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



## OpenAPI

````yaml /api-reference/openapi.json get /products/catalog/v1
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/catalog/v1:
    get:
      tags:
        - Products
      summary: Get product catalog metadata
      description: >-
        Retrieve all product catalog metadata in a single request — categories,
        subcategories, manufacturers, materials, attributes, and certificate
        providers.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      categories:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            title:
                              type: string
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            createdAt:
                              type: string
                            isNumismatic:
                              type: boolean
                            allowCardPayments:
                              type: boolean
                            isInstantShip:
                              type: boolean
                          required:
                            - id
                            - title
                            - description
                            - createdAt
                            - isNumismatic
                            - allowCardPayments
                            - isInstantShip
                          additionalProperties: false
                      subcategories:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            createdAt:
                              type: string
                            title:
                              type: string
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            premiumCalculationType:
                              type: string
                              enum:
                                - unit
                                - troy_ounce
                            feeRate:
                              type: number
                              minimum: -140737488355328
                              maximum: 140737488355327
                            advancedFeeRate:
                              anyOf:
                                - type: number
                                  minimum: -140737488355328
                                  maximum: 140737488355327
                                - type: 'null'
                          required:
                            - id
                            - createdAt
                            - title
                            - description
                            - premiumCalculationType
                            - feeRate
                            - advancedFeeRate
                          additionalProperties: false
                      manufacturers:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            title:
                              type: string
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            updatedAt:
                              type: string
                            createdAt:
                              type: string
                            images:
                              anyOf:
                                - type: array
                                  items:
                                    type: string
                                - type: 'null'
                            isEsg:
                              type: boolean
                          required:
                            - id
                            - title
                            - description
                            - updatedAt
                            - createdAt
                            - images
                            - isEsg
                          additionalProperties: false
                      materials:
                        type: array
                        items:
                          type: string
                      attributes:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            type:
                              type: string
                            title:
                              type: string
                            description:
                              type: string
                          required:
                            - id
                            - type
                            - title
                            - description
                          additionalProperties: false
                      certificateProviders:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            code:
                              anyOf:
                                - type: string
                                - type: 'null'
                            createdAt:
                              type: string
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - id
                            - code
                            - createdAt
                            - description
                            - title
                          additionalProperties: false
                    required:
                      - categories
                      - subcategories
                      - manufacturers
                      - materials
                      - attributes
                      - certificateProviders
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````