What do you want to automate

with Domo and Metatext.AI Pre-build AI models API?

Prompt, edit and deploy AI agents that connect to Domo, Metatext.AI Pre-build AI models API and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Analyze Sentiment with the Metatext.AI Pre-build AI models API API

Determine the sentiment of the given text (positive, negative, or neutral). See the documentation

 
Try it
Extract Keywords with the Metatext.AI Pre-build AI models API API

Identify and extract significant keywords from the given text. See the documentation

 
Try it
Generate Blog Post with the Metatext.AI Pre-build AI models API API

Generate a blog post based on the given prompt. See the documentation

 
Try it
Generate Headline with the Metatext.AI Pre-build AI models API API

Generate a short summary for news headlines. See the documentation

 
Try it
Generate Text with the Metatext.AI Pre-build AI models API API

Generate text based on the given prompt. See the documentation

 
Try it
Integrate the Domo API with the Metatext.AI Pre-build AI models API API
Setup the Domo API trigger to run a workflow which integrates with the Metatext.AI Pre-build AI models API API. Pipedream's integration platform allows you to integrate Domo and Metatext.AI Pre-build AI models API remarkably fast. Free for developers.

Connect Domo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    domo: {
      type: "app",
      app: "domo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.domo.com/v1/users`,
      headers: {
        Authorization: `Bearer ${this.domo.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Metatext.AI Pre-build AI models API

The Metatext.AI Pre-built AI Models API offers various artificial intelligence capabilities such as natural language processing, image recognition, and sentiment analysis. This API enables users to add AI features to their applications without the need for extensive machine learning expertise. Utilizing this API in Pipedream workflows allows for automation and integration with other services, making it possible to process and analyze text and images within a serverless environment efficiently.

Connect Metatext.AI Pre-build AI models API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    metatext_ai_pre_build_ai_models_api: {
      type: "app",
      app: "metatext_ai_pre_build_ai_models_api",
    }
  },
  async run({steps, $}) {
    const data = {
      "text": `{your_text}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.metatext.ai/hub-inference/sentiment-analysis`,
      headers: {
        "Content-Type": `application/json`,
        "x-api-key": `${this.metatext_ai_pre_build_ai_models_api.$auth.api_key}`,
      },
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo