Connectors

Custom Connectors

Building your own connectors

Building Custom Connectors

Create custom connectors by implementing the connector interface:

interface Connector {
  id: string;
  type: string;
  poll(): Promise<NormalizedSignal[]>;
}

Example: Custom API Connector

See the documentation for a full example of building a custom connector.