> ## 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.

# List products

> Lists your products, newest first.



## OpenAPI

````yaml /openapi.json post /products/list
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/list:
    post:
      tags:
        - Products
      summary: List products
      description: Lists your products, newest first.
      operationId: products.list
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                cursor:
                  anyOf:
                    - type: string
                      minLength: 1
                    - type: 'null'
                  description: nextCursor of the previous page; omit for the first page
                limit:
                  type: integer
                  minimum: 1
                  maximum: 100
                  default: 24
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      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
                        patternId:
                          type: string
                          minLength: 1
                          description: The pattern the product was made from
                      required:
                        - productId
                        - title
                        - categoryId
                        - maker
                        - selections
                        - selectionLabel
                        - imageUrl
                        - createdAt
                        - patternId
                    description: >-
                      Newest first. A new product appears once jobs.get reports
                      its job succeeded; products.get adds images, copy and
                      pricing.
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Opaque; pass back unchanged. Null on the last page.
                required:
                  - items
                  - nextCursor
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An API key from Settings → API keys in Arcade Studio.

````