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

# Contagem de linhas de todas as tabelas

> Lê apenas o footer dos arquivos parquet (metadados) — sem carregar os dados. Rápido mesmo em tabelas grandes.



## OpenAPI

````yaml /api-reference/catalog-api.json get /catalog/counts
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/counts:
    get:
      tags:
        - catalog
      summary: Contagem de linhas de todas as tabelas
      description: >-
        Lê apenas o footer dos arquivos parquet (metadados) — sem carregar os
        dados. Rápido mesmo em tabelas grandes.
      operationId: get_counts_catalog_counts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogCounts'
components:
  schemas:
    CatalogCounts:
      properties:
        raw:
          additionalProperties:
            additionalProperties:
              type: integer
            type: object
          type: object
          title: Raw
        clean:
          additionalProperties:
            type: integer
          type: object
          title: Clean
        enrichment:
          additionalProperties:
            type: integer
          type: object
          title: Enrichment
          default: {}
      type: object
      required:
        - raw
        - clean
      title: CatalogCounts
      description: Contagem de linhas por tabela (leitura de footer parquet — rápido).

````