Algolia

Algolia helps businesses across industries quickly create relevant, scalable, and lightning fast Search and Discovery experiences.

Integrate the Algolia API with the Node API

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

Create Objects with the Algolia API

Adds an array of JavaScript objects to the given index. 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
Delete Objects with the Algolia API

Delete objects from the given index. See docs here

 
Try it

Overview of Algolia

Algolia provides a powerful API that lets you build scalable, fast search
applications. Here are some examples of what you can build with Algolia:

  • A fast, relevant search engine for your website or application
  • A autocomplete feature for your search bar
  • A searchable database for your products or inventory
  • A searchable customer directory for your CRM

Connect Algolia

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import algoliasearch from "algoliasearch";

export default defineComponent({
  props: {
    algolia: {
      type: "app",
      app: "algolia",
    }
  },
  async run({steps, $}) {
    const client = algoliasearch(this.algolia.$auth.application_id, this.algolia.$auth.api_key);
    return await client.listIndices()
  },
})

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.