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

# Listar conectores configurados

> List all configured connectors — metadata only, credentials are never returned.

Merges ``sync_schedule`` from connector_config for each connector instance.



## OpenAPI

````yaml /api-reference/catalog-api.json get /connectors
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:
    get:
      tags:
        - connectors
      summary: Listar conectores configurados
      description: >-
        List all configured connectors — metadata only, credentials are never
        returned.


        Merges ``sync_schedule`` from connector_config for each connector
        instance.
      operationId: list_connectors_connectors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ConnectorMetadata'
                type: array
                title: Response List Connectors Connectors Get
components:
  schemas:
    ConnectorMetadata:
      properties:
        id:
          type: string
          title: Id
        type:
          type: string
          title: Type
        name:
          type: string
          title: Name
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        sync_schedule:
          anyOf:
            - type: string
            - type: 'null'
          title: Sync Schedule
      type: object
      required:
        - id
        - type
        - name
        - created_at
        - updated_at
      title: ConnectorMetadata

````