VOOZH about

URL: https://apify.com/ryanclinton/webhook-lead-pusher/input-schema

โ‡ฑ Input ยท Webhook Lead Pusher โ€” Send Enriched Leads to Any Endpoint ยท Apify


๐Ÿ‘ Webhook Lead Pusher โ€” Send Enriched Leads to Any Endpoint avatar

Webhook Lead Pusher โ€” Send Enriched Leads to Any Endpoint

Pricing

from $30.00 / 1,000 lead pusheds

Go to Apify Store

Webhook Lead Pusher โ€” Send Enriched Leads to Any Endpoint

Push enriched leads to any HTTP webhook โ€” Zapier, Make, N8N, HubSpot, Salesforce, or custom APIs. Individual, batch, or chunked delivery with retry logic, custom headers, Bearer auth, and fan-out to multiple endpoints. $0.01/lead.

Pricing

from $30.00 / 1,000 lead pusheds

Rating

0.0

(0)

Developer

๐Ÿ‘ Ryan Clinton

Ryan Clinton

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

You might also like

AI Sentiment Analysis API

alizarin_refrigerator-owner/sentiment-api

Analyze text sentiment with AI. Emotion detection, key phrase extraction. Supports OpenAI GPT-4, Claude. Webhook Integration for Zapier, Make, n8n, or custom webhook.

Power Webhook Integration

pocesar/run-webhook-digest

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

B2B Lead Enrichment โ€” Google Maps to CRM

samstorm/lead-enrichment-actor

Scrape any business type from Google Maps with verified email enrichment, phone numbers & social links. Works for any niche or location. Export to HubSpot, Salesforce, or CSV. The all-in-one B2B lead generation tool.

20

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

Apify โ†’ Clay Pusher

robertsong13/apify---clay-pusher

Push results from the most recent Apify task run directly into Clay Webhook. Deduplicated and production-ready.

๐Ÿ‘ User avatar

Grant Robertson

4

Related articles

How to send HTTP headers with cURL
Read more
How to use web scraping for lead generation
Read more

Webhook URL

webhookUrl

Required

Primary HTTP(S) endpoint to POST leads to (e.g. a Zapier webhook, Make scenario URL, or custom API endpoint).

Type:string
Default:https://httpbin.org/post

Leads

leads

Required

Array of enriched lead objects to push. Each object can have any fields (name, email, company, phone, etc.).

Type:array

Additional Webhook URLs

webhookUrls

Optional

Optional additional endpoints to fan-out leads to. Leads will be sent to ALL URLs (primary + additional).

Type:array

HTTP Method

method

Optional

HTTP method to use when pushing leads.

Type:string
Default:POST
Options:
POSTPUTPATCH

Custom Headers

headers

Optional

Additional HTTP headers to include in every request (e.g. {"X-API-Key": "your-key", "X-Source": "apify"}). Content-Type: application/json is always set automatically.

Type:object

Auth Token (Bearer)

authToken

Optional

Bearer token for authentication. Sent as Authorization: Bearer {token}. Use this instead of putting the token in custom headers.

Type:string

Batch Mode

batchMode

Optional

How to group leads into HTTP requests. Individual: one request per lead. Batch: all leads in one request. Chunks: leads split into groups of chunkSize.

Type:string
Default:individual
Options:
individualbatchchunks

Chunk Size

chunkSize

Optional

Number of leads per request when using Chunks mode.

Type:integer
Minimum:1
Maximum:1000
Default:50

Wrap in Payload Envelope

wrapInPayload

Optional

When enabled, leads are sent as {"leads": [...]}. When disabled, the raw lead object (individual mode) or raw array (batch/chunks) is sent directly.

Type:boolean
Default:true

Payload Template (Handlebars-style)

payloadTemplate

Optional

Optional custom payload template. Use {{fieldName}} to inject lead field values and {{lead}} for the full lead as JSON. Example: {"contact": "{{firstName}} {{lastName}}", "data": {{lead}}}. Overrides wrapInPayload when set.

Type:string

Retry on Failure

retryOnFailure

Optional

Retry failed requests once after a 2-second delay. 5xx errors and network timeouts are retried. 4xx client errors are not retried.

Type:boolean
Default:true

Max Leads

maxLeads

Optional

Maximum number of leads to process from the input array.

Type:integer
Minimum:1
Maximum:10000
Default:1000

Delay Between Requests (ms)

delayBetweenRequests

Optional

Milliseconds to wait between HTTP requests in Individual and Chunks modes. Use this to avoid rate-limiting on the destination endpoint.

Type:integer
Minimum:0
Maximum:30000
Default:200