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

# Retrieve a product

> Retrieves a product with its images, maker and price. Pass `quantity` to price that quantity.



## OpenAPI

````yaml /openapi.json post /products/get
openapi: 3.1.1
info:
  title: Arcade API
  version: '1'
  description: >-
    Generate patterns and order them as manufactured products. Every request is
    a POST with a JSON body.
servers:
  - url: https://platform.arcade.ai/v1
    description: Production
  - url: https://staging-platform.arcade.ai/v1
    description: Staging
security:
  - apiKey: []
tags:
  - name: Patterns
    description: Patterns you generate.
  - name: Refine
    description: Edit, recolor, crop and extend patterns.
  - name: Jobs
    description: Long-running work.
  - name: References
    description: Images that guide generation.
  - name: Models
    description: The models that generate patterns.
  - name: Categories
    description: Product types and their options.
  - name: Products
    description: Products made from your patterns.
  - name: Checkouts
    description: Checkouts for ordering products.
  - name: Orders
    description: Your orders.
paths:
  /products/get:
    post:
      tags:
        - Products
      summary: Retrieve a product
      description: >-
        Retrieves a product with its images, maker and price. Pass `quantity` to
        price that quantity.
      operationId: products.get
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                productId:
                  type: string
                  minLength: 1
                  description: Opaque product ID
                quantity:
                  type: integer
                  minimum: 1
                  maximum: 9007199254740991
                  default: 1
                  description: The quantity pricing is quoted for
              required:
                - productId
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  productId:
                    type: string
                    minLength: 1
                    description: Opaque product ID
                  title:
                    type: string
                  categoryId:
                    type: string
                    minLength: 1
                    description: Category ID, from categories.list
                  maker:
                    type: object
                    properties:
                      makerId:
                        type: string
                      name:
                        type: string
                    required:
                      - makerId
                      - name
                  selections:
                    type: object
                    propertyNames:
                      type: string
                      minLength: 1
                      description: Option key, from categories.get
                    additionalProperties:
                      type: string
                      minLength: 1
                      description: Option value, from categories.get
                    description: >-
                      The selection the product was made with, option value per
                      option key
                  selectionLabel:
                    type: string
                    description: Human-readable summary of the selection
                  imageUrl:
                    type: string
                    format: uri
                    description: >-
                      Thumbnail of the primary product image. Short-lived; read
                      again to renew. Host not guaranteed.
                  createdAt:
                    type: string
                    format: date-time
                  images:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                          format: uri
                          description: >-
                            Short-lived; read again to renew. Host not
                            guaranteed.
                      required:
                        - url
                    description: Product images, primary first
                  description:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Product details; null when they cannot be loaded
                  careInstructions:
                    type: string
                    description: >-
                      Empty when there are none or they cannot be loaded right
                      now
                  volumeDiscounts:
                    anyOf:
                      - type: object
                        properties:
                          currency:
                            type: string
                            description: ISO 4217 code
                          tiers:
                            type: array
                            items:
                              type: object
                              properties:
                                minimumSpend:
                                  type: string
                                  description: Decimal amount
                                maximumSpend:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                  description: >-
                                    Decimal amount; null for the open-ended last
                                    tier
                                discountPercent:
                                  type: number
                              required:
                                - minimumSpend
                                - maximumSpend
                                - discountPercent
                        required:
                          - currency
                          - tiers
                      - type: 'null'
                    description: >-
                      Spend tiers of the maker's volume discount; empty when it
                      has none, and null when they are unavailable right now
                  patternId:
                    type: string
                    minLength: 1
                    description: The pattern the product was made from
                  unitPrice:
                    anyOf:
                      - type: object
                        properties:
                          amount:
                            type: string
                            description: Decimal amount, e.g. "48.00"
                          currency:
                            type: string
                            description: ISO 4217 code
                        required:
                          - amount
                          - currency
                      - type: 'null'
                    description: >-
                      The price of one unit when ordering quantity, before the
                      volume discount; null while pricing is unavailable, so
                      read again later
                required:
                  - productId
                  - title
                  - categoryId
                  - maker
                  - selections
                  - selectionLabel
                  - imageUrl
                  - createdAt
                  - images
                  - description
                  - careInstructions
                  - volumeDiscounts
                  - patternId
                  - unitPrice
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An API key from Settings → API keys in Arcade Studio.

````