VOOZH about

URL: https://apify.com/pocesar/run-webhook-digest/api

⇱ Power Webhook Integration API Β· Apify


Pricing

$5.00/month + usage

Go to Apify Store

Power Webhook Integration

Allows you to provide multiple HTTP endpoints, that receive a more complete JSON from the run, and allow you to hit those endpoints using a proxy, and enable you to do conditional webhook calls with some lines of Javascript code and you can link/chain one actor to another

Pricing

$5.00/month + usage

Rating

0.0

(0)

Developer

πŸ‘ Paulo Cesar

Paulo Cesar

Maintained by Community

Actor stats

6

Bookmarked

26

Total users

2

Monthly active users

4 years ago

Last modified

Share

You might also like

Facebook Post Scraper | Webhook Support

devninja/facebook-post-scraper-webhook-support

This actor helps you collect Facebook posts quickly. You can set it to run automatically (every hour, day, or month) through Apify Schedule, and it will send the collected data straight to your server using a webhookβ€”no need to check manually.

HTTP API & Webhook Gateway

amernas/http-api-webhook-gateway

A versatile actor that functions as both a powerful HTTP client and a secure webhook receiver. If your application can trigger an Apify actor but can't make direct HTTP calls, use this tool to interact with any external API. It also provides a stable endpoint to receive incoming webhooks.

πŸ‘ User avatar

Traffic Architect

35

Pinterest Scraper

danielmilevski9/pinterest-crawler

Our free Pinterest Scraper allows you to get "pins" along with a user's profile. This unofficial Pinterest API is designed to give you more details than you can see in the web interface. It also enables you to extract public data from Pinterest without limits.

πŸ‘ User avatar

Daniel Milevski

3.3K

3.2

Youtube Video Actor

pintostudio/youtube-video-actor

This Apify Actor allows you to extract detailed information from YouTube videos. You can fetch video details, comments, transcripts, and recommendations with just a video URL.

19

Send Email

apify/send-mail

Send a custom email to one or more recipients. This Actor is useful for notifications and reporting. It can be invoked directly from code or via webhook integration after another Actor finishes.

Simple ChatGPT Actor

dtrungtin/simple-chatgpt-actor

The actor will start the webhook so you can ask your question to ChapGPT without providing the api key and receive the corresponding response.

Related articles

5 powerful scrapers to add to your SEO tool kit
Read more
How to scrape Yelp without getting blocked (2025 guide)
Read more
How to collect data from a website: a comprehensive guide
Read more

You can access the Power Webhook Integration programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

πŸ‘ Python

Python

πŸ‘ JavaScript

JavaScript

CLI

πŸ‘ OpenAPI

OpenAPI

HTTP

MCP

# Set API token
$API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
$cat> input.json <<'EOF'
<{
< "method": "POST",
< "statuses": [
< "ACTOR.RUN.SUCCEEDED",
< "ACTOR.RUN.FAILED",
< "ACTOR.RUN.TIMED_OUT"
< ],
< "customData": {},
< "transformEndpoint": "async ({ Apify, url, dataset, requestQueue, keyValueStore, abort, data, input: { customData } }) => {\n return data;\n}",
< "triggerCondition": "async ({ Apify, dataset, requestQueue, keyValueStore, abort, data, input: { customData } }) => {\n return true;\n}"
<}
<EOF
# Run the Actor using an HTTP API
# See the full API reference at https://docs.apify.com/api/v2
$curl"https://api.apify.com/v2/acts/pocesar~run-webhook-digest/runs?token=$API_TOKEN"\
<-X POST \
<-d @input.json \
<-H'Content-Type: application/json'

Power Webhook Integration API

Below, you can find a list of relevant HTTP API endpoints for calling the Power Webhook Integration Actor. For this, you’ll need an Apify account. Replace <YOUR_API_TOKEN> in the URLs with your Apify API token, which you can find under Integrations in Apify Console. For details, see the API reference.

Run Actor

POST
https://api.apify.com/v2/acts/pocesar~run-webhook-digest/runs?token=<YOUR_API_TOKEN>

Note: By adding the method=POST query parameter, this API endpoint can be called using a GET request and thus used in third-party webhooks. Please refer to our Run Actor API documentation.

Run Actor synchronously and get dataset items

POST
https://api.apify.com/v2/acts/pocesar~run-webhook-digest/run-sync-get-dataset-items?token=<YOUR_API_TOKEN>

Note: This endpoint supports both POST and GET request methods. However, only the POST method allows you to pass input data. For more information, please refer to our Run Actor synchronously and get dataset items API documentation.

Get Actor

GET
https://api.apify.com/v2/acts/pocesar~run-webhook-digest?token=<YOUR_API_TOKEN>

For more information, please refer to our Get Actor API documentation.

Actors can be used to scrape web pages, extract data, or automate browser tasks. Use the Power Webhook Integration API programmatically via the Apify API.

You can choose from:

Power Webhook Integration API in Python

Power Webhook Integration API in JavaScript

Power Webhook Integration API through CLI

Power Webhook Integration OpenAPI definition

You can start Power Webhook Integration with the Apify API by sending an HTTP POST request to the Run Actorendpoint. An Actor’s input and its content type can be passed as a payload of the POST request, and additional options can be specified using URL query parameters. The Power Webhook Integration is identified within the API by its ID, which is the creator’s username and the name of the Actor.

When the Power Webhook Integration run finishes you can list the data from its default dataset(storage) via the API or you can preview the data directly on Apify Console.