import { PanoraSDK } from '@panora/typescript-sdk';const sdk = new PanoraSDK('YOUR_API_KEY');(async () => { const result = await sdk.connections.getConnections(); console.log(result);})();
This will list all the connections available, across all users. You should get an object similar to this one below. Read more about the connection object.