
HTTP API & Webhook Gateway
Pricing
$5.00 / 1,000 results

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.
0.0 (0)
Pricing
$5.00 / 1,000 results
0
2
2
Last modified
3 days ago
HTTP Method
method
EnumOptional
The HTTP method for the request (GET, POST, PUT, DELETE, PATCH).
Value options:
"GET": string"POST": string"PUT": string"DELETE": string"PATCH": string"OPTIONS": string"HEAD": string
Default value of this property is "GET"
Target URL
url
stringOptional
The complete URL endpoint to send the request to (e.g., https://api.example.com/data).
HTTP Headers
headers
objectOptional
HTTP headers to include with the request (e.g., Authorization, Content-Type, User-Agent).
Default value of this property is {}
URL Query Parameters
params
objectOptional
Query parameters to append to the URL (e.g., ?page=1&limit=10).
Default value of this property is {}
Request Body Data
data
objectOptional
Data to send in the request body. Used with POST, PUT, PATCH methods.
Proxy Configuration
proxySettings
objectOptional
Proxy settings for the request. Configure Apify proxy or custom proxy.
Default value of this property is {"useApifyProxy":false}
Request Timeout (seconds)
timeoutSecs
integerOptional
Maximum time to wait for the request to complete.
Default value of this property is 60
Follow Redirects
followRedirects
booleanOptional
Whether to automatically follow HTTP redirects (3xx responses).
Default value of this property is true
Request Body Mode
bodyMode
EnumOptional
How to encode the request body. 'auto' detects based on Content-Type header.
Value options:
"auto": string"json": string"form": string"raw": string
Default value of this property is "auto"