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

# Run enrichment now (on-demand)

> Trigger an on-demand enrichment run for the connector. Enriches not-yet-done
source rows (incremental — cache skips done rows), then refreshes the clean
table. ``limit`` runs only a batch (validate cheaply). Runs in the background;
watch progress in the catalog's enrichment Summary tab.



## OpenAPI

````yaml /api-reference/catalog-api.json post /connectors/{connector_type}/ai-run
openapi: 3.1.0
info:
  title: Strattum Catalog API
  description: Expõe a estrutura do data lake — camadas, conectores e tabelas.
  version: 0.1.0
servers: []
security: []
paths:
  /connectors/{connector_type}/ai-run:
    post:
      tags:
        - connectors
      summary: Run enrichment now (on-demand)
      description: >-
        Trigger an on-demand enrichment run for the connector. Enriches
        not-yet-done

        source rows (incremental — cache skips done rows), then refreshes the
        clean

        table. ``limit`` runs only a batch (validate cheaply). Runs in the
        background;

        watch progress in the catalog's enrichment Summary tab.
      operationId: ai_run_connectors__connector_type__ai_run_post
      parameters:
        - name: connector_type
          in: path
          required: true
          schema:
            type: string
            title: Connector Type
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 1
              - type: 'null'
            description: Cap pending rows processed (batch)
            title: Limit
          description: Cap pending rows processed (batch)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Ai Run Connectors  Connector Type  Ai Run Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````