WebScraper.IO

Making web data extraction easy and accessible for everyone.

Integrate the WebScraper.IO API with the Metatext.AI Pre-build AI models API API

Setup the WebScraper.IO 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 WebScraper.IO and Metatext.AI Pre-build AI models API remarkably fast. Free for developers.

Analyze Sentiment with Metatext.AI Pre-build AI models API API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Metatext.AI Pre-build AI models API
 
Try it
Extract Keywords with Metatext.AI Pre-build AI models API API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Metatext.AI Pre-build AI models API
 
Try it
Generate Blog Post with Metatext.AI Pre-build AI models API API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Metatext.AI Pre-build AI models API
 
Try it
Generate Headline with Metatext.AI Pre-build AI models API API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Metatext.AI Pre-build AI models API
 
Try it
Generate Text with Metatext.AI Pre-build AI models API API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Metatext.AI Pre-build AI models API
 
Try it
New Scraping Completed from the WebScraper.IO API

Emit new event when a page scraping job has completed. See the docs here

 
Try it
Create Scraping Job with the WebScraper.IO API

Creates a scraping job (scrapes a sitemap). See the docs here

 
Try it
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
Create Sitemap with the WebScraper.IO API

Creates a sitemap for the selected website. See the docs here

 
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
Get Scraping Jobs with the WebScraper.IO API

Retrieves a list of scraping jobs for a sitemap. See the docs here

 
Try it

Overview of WebScraper.IO

The WebScraper.IO API allows you to programmatically perform web scraping tasks, extracting structured data from websites. With the API, you can automate the gathering of web content for analysis, monitoring, and integration with other data sources. In Pipedream, you can leverage this API to build workflows that process, analyze, and act on the data you scrape without writing code for backend infrastructure.

Connect WebScraper.IO

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: {
    webscraper_io: {
      type: "app",
      app: "webscraper_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.webscraper.io/api/v1/sitemaps`,
      params: {
        api_token: `${this.webscraper_io.$auth.api_key}`,
      },
    })
  },
})

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,
    })
  },
})