---
search:
  tags:
    - Sources
    - GET
seo:
  description: >-
    List available source connector types and their configuration schemas.
    Reference for the GET /sources/connectors endpoint in the Streamkap REST
    API.
sidebar:
  label: Get Sources Connectors
  badge: GET
title: Get Sources Connectors
type: openapi-operation
---
List available source connector types and their configuration schemas.

Returns connector definitions grouped by display name. Each connector includes a `config`
array describing every configuration property - use properties where `user_defined` is `true`
to build the `config` object for the **POST /sources** and **PUT /sources/&#123;source_id&#125;** endpoints.

Pass `connector_code` (e.g., `postgresql`, `mysql`, `mongodb`) to retrieve the schema for a
single connector type. Omit it to retrieve all available connectors.

Each config property includes:
- `name` - the dot-notation key to use in the `config` object (e.g., `database.hostname.user.defined`)
- `description` - human-readable explanation
- `required` - whether the property is mandatory
- `display_name` - short label
- `value.control` - input type (`string`, `password`, `one-select`, etc.)
- `value.default` - default value, if any

`GET /sources/connectors`
