Intellexer API

The Intellexer API enables developers to embed Intellexer semantic products into consumer or enterprise applications or web-services using XML or JSON.

Integrate the Intellexer API API with the Supabase API

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

Detect Language with Intellexer API API on New Row Added from Supabase API
Supabase + Intellexer API
 
Try it
Detect Language with Intellexer API API on New Webhook Event (Instant) from Supabase API
Supabase + Intellexer API
 
Try it
Extract Named Entities with Intellexer API API on New Row Added from Supabase API
Supabase + Intellexer API
 
Try it
Extract Named Entities with Intellexer API API on New Webhook Event (Instant) from Supabase API
Supabase + Intellexer API
 
Try it
Summarize Document with Intellexer API API on New Row Added from Supabase API
Supabase + Intellexer API
 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Detect Language with the Intellexer API API

Recognize language and encoding of an input text stream. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Extract Named Entities with the Intellexer API API

Extract named entities from a document using Intellexer API. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Summarize Document with the Intellexer API API

Summarize a document using Intellexer API. See the documentation

 
Try it

Overview of Intellexer API

The Intellexer API offers a suite of linguistic and semantic analysis tools that can enhance text-based applications. With it, you can extract meaning, relations, and facts from the text, enabling smarter data management and decision-making processes. When paired with Pipedream's serverless execution model, the Intellexer API can be used to automate content analysis, enhance search functionalities, and preprocess data for more complex workflows.

Connect Intellexer API

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: {
    intellexer_api: {
      type: "app",
      app: "intellexer_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `http://api.intellexer.com/sentimentAnalyzerOntologies`,
      headers: {
        "Content-Type": `application/json`,
      },
      params: {
        apikey: `${this.intellexer_api.$auth.api_key}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

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: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})