Hacker News

Social news website

Integrate the Hacker News API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Stories by Keyword from Hacker News API
Hacker News + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Stories by Keyword from Hacker News API
Hacker News + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Stories by Keyword from Hacker News API
Hacker News + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Stories by Keyword from Hacker News API
Hacker News + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Stories by Keyword from Hacker News API
Hacker News + Formatting
 
Try it
New Stories by Keyword from the Hacker News API

Emit new stories that mention a specific keyword

 
Try it
New Comments by Keyword from the Hacker News API

Emit new comments that mention a specific keyword

 
Try it
[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 Hacker News

The Hacker News API on Pipedream allows you to tap into the vibrant pool of stories, comments, and user data from one of tech's favorite forums. By leveraging this API, you can automate the process of extracting data for analysis, tracking mentions of specific topics, or even monitoring the performance of your own submissions. The real power lies in integrating this wealth of information with other services to create custom, automated workflows that save time and keep you informed.

Connect Hacker News

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    hacker_news: {
      type: "app",
      app: "hacker_news",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://hn.algolia.com/api/v1/search_by_date?query=pipedream`,
    })
  },
})

Connect Formatting

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