Alpha Vantage

Free Stock APIs in JSON & Excel

Integrate the Alpha Vantage API with the Formatting API

Setup the Alpha Vantage API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Alpha Vantage and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Alpha Vantage

The Alpha Vantage API offers access to a wealth of financial data, including real-time and historical stock prices, forex rates, cryptocurrency data, and more. With Pipedream’s serverless platform, you can easily connect Alpha Vantage to a variety of other services and apps to create powerful financial data workflows. Automate the tracking of stock performance, set up alerts for forex rate changes, digest cryptocurrency trends, or integrate financial data into custom dashboards or databases without the need to manage complex infrastructure.

Connect Alpha Vantage

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    alpha_vantage: {
      type: "app",
      app: "alpha_vantage",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.alphavantage.co/query?`,
      params: {
        function: `GLOBAL_QUOTE`,
        symbol: `MSFT`,
        apikey: `${this.alpha_vantage.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})