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

# Get apiv1pimproducts enrichment



## OpenAPI

````yaml https://app.facetflux.com/api/openapi/v1.json get /api/v1/pim/products/{productId}/enrichment
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/pim/products/{productId}/enrichment:
    get:
      tags:
        - Enrichment
      parameters:
        - name: productId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PimEnrichmentSuggestion'
            application/json:
              schema:
                $ref: '#/components/schemas/PimEnrichmentSuggestion'
            text/json:
              schema:
                $ref: '#/components/schemas/PimEnrichmentSuggestion'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    PimEnrichmentSuggestion:
      required:
        - tenantId
        - productId
      type: object
      properties:
        tenantId:
          type: string
        productId:
          type: string
        status:
          $ref: '#/components/schemas/PimEnrichmentStatus'
        mode:
          $ref: '#/components/schemas/EnrichmentMode'
        fieldSuggestions:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/PimFieldSuggestion'
        createdAt:
          type: string
          format: date-time
        completedAt:
          type:
            - 'null'
            - string
          format: date-time
        errorMessage:
          type:
            - 'null'
            - string
        createdByUserId:
          type:
            - 'null'
            - string
        id:
          type: string
        idCreated:
          type: string
          format: date-time
    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
    PimEnrichmentStatus:
      type: integer
    EnrichmentMode:
      type: integer
    PimFieldSuggestion:
      required:
        - attributeDefinitionId
        - attributeCode
      type: object
      properties:
        attributeDefinitionId:
          type: string
        attributeCode:
          type: string
        value: {}
        reasoning:
          type:
            - 'null'
            - string
        confidence:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$
          type:
            - 'null'
            - number
            - string
          format: double
        accepted:
          type: boolean
        rejected:
          type: boolean
  securitySchemes:
    apiKey:
      type: http
      description: Your FacetFlux API key, minted under Settings → API keys.
      scheme: bearer

````