Last active
October 26, 2021 12:05
-
-
Save janlukasschroeder/ce81151f4012e6304c30fe3a24663295 to your computer and use it in GitHub Desktop.
SEC EDGAR Streaming Client in Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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