Skip to content

Instantly share code, notes, and snippets.

@janlukasschroeder
Last active October 26, 2021 12:05
Show Gist options
  • Save janlukasschroeder/ce81151f4012e6304c30fe3a24663295 to your computer and use it in GitHub Desktop.
Save janlukasschroeder/ce81151f4012e6304c30fe3a24663295 to your computer and use it in GitHub Desktop.
SEC EDGAR Streaming Client in Node.js
const { streamApi } = require('sec-api');
const client = streamApi.connect('YOUR_API_KEY');
client.on('filing', (filing) => console.log(filing));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment