What do you want to automate

with ParseHub and Apify (OAuth)?

Prompt, edit and deploy AI agents that connect to ParseHub, Apify (OAuth) 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
Cancel Run with ParseHub API on New Finished Actor Run (Instant) from Apify (OAuth) API
Apify (OAuth) + ParseHub
 
Try it
Cancel Run with ParseHub API on New Finished Task Run (Instant) from Apify (OAuth) API
Apify (OAuth) + ParseHub
 
Try it
Delete Run with ParseHub API on New Finished Actor Run (Instant) from Apify (OAuth) API
Apify (OAuth) + ParseHub
 
Try it
Delete Run with ParseHub API on New Finished Task Run (Instant) from Apify (OAuth) API
Apify (OAuth) + ParseHub
 
Try it
Get Data for a Run with ParseHub API on New Finished Actor Run (Instant) from Apify (OAuth) API
Apify (OAuth) + ParseHub
 
Try it
New Finished Actor Run (Instant) from the Apify (OAuth) API

Emit new event when a selected Actor is run and finishes.

 
Try it
New Finished Task Run (Instant) from the Apify (OAuth) API

Emit new event when a selected task is run and finishes.

 
Try it
Cancel Run with the ParseHub API

Cancels a run and changes its status to cancelled. See the documentation

 
Try it
Get Dataset Items with the Apify (OAuth) API

Returns data stored in a dataset. See the documentation

 
Try it
Delete Run with the ParseHub API

Cancels a run if running, and deletes the run and its data. See the documentation

 
Try it
Get Data for a Run with the ParseHub API

Returns the data extracted by a specified run. See the documentation

 
Try it
Get Project Details with the ParseHub API

Retrieves the details of a specified project within the user's account. See the documentation

 
Try it
Integrate the ParseHub API with the Apify (OAuth) API
Setup the ParseHub API trigger to run a workflow which integrates with the Apify (OAuth) API. Pipedream's integration platform allows you to integrate ParseHub and Apify (OAuth) remarkably fast. Free for developers.

Overview of ParseHub

The ParseHub API allows you to leverage the power of web scraping directly within Pipedream. By integrating ParseHub, you can automate the collection of data from web pages, manipulate and transform it with Pipedream’s built-in code steps or pre-built actions, and connect it to hundreds of other apps. You can extract structured data from any website, run scraping jobs, retrieve results and integrate with other services for data processing, visualization, or storage.

Connect ParseHub

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: {
    parsehub: {
      type: "app",
      app: "parsehub",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.parsehub.com/api/v2/projects`,
      params: {
        api_key: `${this.parsehub.$auth.api_key}`,
      },
    })
  },
})

Connect Apify (OAuth)

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: {
    apify_oauth: {
      type: "app",
      app: "apify_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.apify.com/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.apify_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})

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