Free API for stock, forex and crypto market. Access company fundamentals, reference data and alternative data with API.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Finnhub API offers real-time market data, financial statements, and various market indicators. It's a valuable tool for investors and developers building tools for market analysis, portfolio management, or financial data integration. Using Pipedream, you can connect the Finnhub API to various other apps and services, creating automated workflows that leverage live financial data to inform decisions, trigger alerts, or feed into data analysis pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
finnhub: {
type: "app",
app: "finnhub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://finnhub.io/api/v1/forex/exchange`,
headers: {
"X-Finnhub-Token": `${this.finnhub.$auth.api_key}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})