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

# List products



## OpenAPI

````yaml https://app.facetflux.com/api/openapi/v1.json get /api/v1/public/products
openapi: 3.1.1
info:
  title: FacetFlux API
  description: >-
    Product catalog, diagnostics, AI enrichment, and exports for your FacetFlux
    tenant. Authenticate by sending your API key as a Bearer token:
    `Authorization: Bearer <your-api-key>`. All responses are scoped to the
    tenant the API key belongs to. Read-only keys can only perform GET requests;
    mint a 'Read & write' key for mutating calls. An MCP server with the full
    tool surface is available at `https://app.facetflux.com/api/mcp` (same
    Bearer auth).
  contact:
    name: FacetFlux Support
    url: https://facetflux.com
    email: support@facetflux.com
  version: v1
servers:
  - url: https://app.facetflux.com
    description: Production
security:
  - apiKey: []
tags:
  - name: Diagnostics
  - name: Product Catalog
  - name: Exports
  - name: Enrichment
paths:
  /api/v1/public/products:
    get:
      tags:
        - Product Catalog
      summary: List products
      parameters:
        - name: page
          in: query
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
            default: 1
        - name: pageSize
          in: query
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
            default: 50
        - name: status
          in: query
          schema:
            $ref: '#/components/schemas/PimProductStatus'
        - name: purpose
          in: query
          schema:
            $ref: '#/components/schemas/ProductPurpose'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfPimProductPublicDto'
            application/json:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfPimProductPublicDto'
            text/json:
              schema:
                $ref: '#/components/schemas/PagedReadDtoOfPimProductPublicDto'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    PimProductStatus:
      type: integer
    ProductPurpose:
      type: integer
    PagedReadDtoOfPimProductPublicDto:
      type: object
      properties:
        page:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        totalCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int64
        data:
          type: array
          items:
            $ref: '#/components/schemas/PimProductPublicDto'
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
        detail:
          type:
            - 'null'
            - string
        instance:
          type:
            - 'null'
            - string
    PimProductPublicDto:
      required:
        - id
        - schemaId
      type: object
      properties:
        id:
          type: string
        skuList:
          type: array
          items:
            type: string
        productNumber:
          type:
            - 'null'
            - string
        schemaId:
          type: string
        primaryTypeId:
          type:
            - 'null'
            - string
        traitIds:
          type: array
          items:
            type: string
        categoryIds:
          type: array
          items:
            type: string
        channelCodes:
          type: array
          items:
            type: string
        isConfigurable:
          type: boolean
        status:
          $ref: '#/components/schemas/PimProductStatus'
        purpose:
          $ref: '#/components/schemas/ProductPurpose'
        roleValues:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/ProductRoleValuesPublicDto'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    ProductRoleValuesPublicDto:
      type: object
      properties:
        name:
          type:
            - 'null'
            - string
        description:
          type:
            - 'null'
            - string
        brand:
          type:
            - 'null'
            - string
        customerProductId:
          type:
            - 'null'
            - string
        primaryImageUrl:
          type:
            - 'null'
            - string
  securitySchemes:
    apiKey:
      type: http
      description: Your FacetFlux API key, minted under Settings → API keys.
      scheme: bearer

````