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

# Resumo agregado de uma tabela de enrichment

> Linhas enriquecidas, concluídas/falhas, custo total, tokens, modelos.



## OpenAPI

````yaml /api-reference/catalog-api.json get /catalog/enrichment-summary
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:
  /catalog/enrichment-summary:
    get:
      tags:
        - catalog
      summary: Resumo agregado de uma tabela de enrichment
      description: Linhas enriquecidas, concluídas/falhas, custo total, tokens, modelos.
      operationId: get_enrichment_summary_catalog_enrichment_summary_get
      parameters:
        - name: table
          in: query
          required: true
          schema:
            type: string
            description: Nome da tabela no schema enrichment
            title: Table
          description: Nome da tabela no schema enrichment
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnrichmentSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EnrichmentSummary:
      properties:
        table:
          type: string
          title: Table
        rows:
          type: integer
          title: Rows
        done:
          type: integer
          title: Done
        failed:
          type: integer
          title: Failed
        cost_usd:
          type: number
          title: Cost Usd
        input_tokens:
          type: integer
          title: Input Tokens
        output_tokens:
          type: integer
          title: Output Tokens
        models:
          items:
            type: string
          type: array
          title: Models
        prompt_versions:
          items:
            type: string
          type: array
          title: Prompt Versions
        last_run:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Run
        source_total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Source Total
        pending:
          anyOf:
            - type: integer
            - type: 'null'
          title: Pending
        connector:
          anyOf:
            - type: string
            - type: 'null'
          title: Connector
        running:
          type: boolean
          title: Running
          default: false
        last_run_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Run State
      type: object
      required:
        - table
        - rows
        - done
        - failed
        - cost_usd
        - input_tokens
        - output_tokens
        - models
        - prompt_versions
        - last_run
      title: EnrichmentSummary
      description: Aggregated view of one enrichment table (the 'Resumo' tab).
    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

````