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

# Post apiv1pimproductsenrichmentestimate



## OpenAPI

````yaml https://app.facetflux.com/api/openapi/v1.json post /api/v1/pim/products/enrichment/estimate
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/enrichment/estimate:
    post:
      tags:
        - Enrichment
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnrichmentEstimateRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/EnrichmentEstimateRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EnrichmentEstimateRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/EnrichmentEstimateResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/EnrichmentEstimateResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/EnrichmentEstimateResponse'
components:
  schemas:
    EnrichmentEstimateRequest:
      required:
        - productIds
      type: object
      properties:
        productIds:
          type: array
          items:
            type: string
        mode:
          $ref: '#/components/schemas/EnrichmentMode'
    EnrichmentEstimateResponse:
      type: object
      properties:
        creditsRequired:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        creditsAvailable:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int64
        canProceed:
          type: boolean
        productCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
        creditsPerProduct:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
          format: int32
    EnrichmentMode:
      type: integer
  securitySchemes:
    apiKey:
      type: http
      description: Your FacetFlux API key, minted under Settings → API keys.
      scheme: bearer

````