Fomo

Fomo delivers social proof to create website conversion momentum. The Fomo app does this by enabling online experience that feels like a busy store. When a person converts -- whether buying a new jacket, signing up for a retreat, or anything else -- Fomo shows this activity off to other visitors to drive action.

Integrate the Fomo API with the Node API

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

Run Node Code with Node API on New Event Received from Fomo API
Fomo + Node
 
Try it
New Event Received from the Fomo API

Emit new event on each new site event received.

 
Try it
Create Event with the Fomo API

Creates an event. See docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it

Overview of Fomo

With the Fomo API, you can build a variety of applications that can help
increase engagement and conversions on your website or online store. Examples
of applications that can be built using the Fomo API include:

  • A social proof notifications app that can display recent customer activity on
    your site in real-time, such as recent purchases, sign-ups, or downloads.
  • An email capture form that can be triggered when a user shows interest in a
    product or service on your site.
  • A live chat widget that can be used to engage with visitors in real-time and
    answer any questions they may have.
  • A referral program that can incentivize users to spread the word about your
    products or services.
  • A live blog or news feed that can keep visitors up-to-date on the latest
    happenings on your site.

Connect Fomo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    fomo: {
      type: "app",
      app: "fomo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.fomo.com/api/v1/applications/me`,
      headers: {
        "Content-Type": `application/json`,
        "Authorization": `Token ${this.fomo.$auth.api_token}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// 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
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.