List all connectors

Retrieve a list of all connectors with their status

GET
/api/v1/connectors

Response Body

application/json

curl -X GET "https://loading/api/v1/connectors"
{
  "connectors": [
    {
      "connector": {
        "buffer": {},
        "disabled": false,
        "id": "string",
        "limits": {},
        "schedule": {},
        "sink": {
          "postgres": {
            "connection": {
              "database": "string",
              "host": "string",
              "max_pool_size": 0,
              "operation_lock_timeout_seconds": 0,
              "password": "string",
              "port": 5432,
              "ssl_cert": "string",
              "ssl_key": "string",
              "ssl_mode": "Prefer",
              "ssl_root_cert": "string",
              "user": "string"
            },
            "migration_strategy": {},
            "target_schema": "string"
          }
        },
        "source": {
          "postgres": {
            "catalog": {},
            "connection": {
              "database": "string",
              "host": "string",
              "max_pool_size": 0,
              "operation_lock_timeout_seconds": 0,
              "password": "string",
              "port": 5432,
              "ssl_cert": "string",
              "ssl_key": "string",
              "ssl_mode": "Prefer",
              "ssl_root_cert": "string",
              "user": "string"
            },
            "parallel_snapshots_enabled": true,
            "partitions_as_root": false,
            "replication_type": {
              "logical_replication": {}
            }
          }
        }
      },
      "created_at": "string",
      "run_id": "string",
      "status": {}
    }
  ]
}
Empty
NaN