Benzinga

Actionable Trading Ideas & Real Time News

Go to site
Explore
/
Apps
/
Benzinga

Benzinga API Integrations

Build and run workflows using the Benzinga API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Using the Benzinga API, you can build applications that:

  • Retrieve breaking news stories
  • Get real-time stock quotes
  • Get market summaries
  • Look up company profiles
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    benzinga: {
      type: "app",
      app: "benzinga",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.benzinga.com/api/v2/news`,
      headers: {
        "accept": `application/json`,
      },
      params: {
        token: `${this.benzinga.$auth.api_key}`,
      },
    })
  },
})

Authentication

Benzinga uses API keys for authentication. When you connect your Benzinga account, Pipedream securely stores the keys so you can easily authenticate to Benzinga APIs in both code and no-code steps.