HTTP API & Webhook Gateway avatar
HTTP API & Webhook Gateway

Pricing

$5.00 / 1,000 results

Go to Apify Store
HTTP API & Webhook Gateway

HTTP API & Webhook Gateway

Developed by

Traffic Architect

Traffic Architect

Maintained by Community

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

methodEnumOptional

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

urlstringOptional

The complete URL endpoint to send the request to (e.g., https://api.example.com/data).

HTTP Headers

headersobjectOptional

HTTP headers to include with the request (e.g., Authorization, Content-Type, User-Agent).

Default value of this property is {}

URL Query Parameters

paramsobjectOptional

Query parameters to append to the URL (e.g., ?page=1&limit=10).

Default value of this property is {}

Request Body Data

dataobjectOptional

Data to send in the request body. Used with POST, PUT, PATCH methods.

Proxy Configuration

proxySettingsobjectOptional

Proxy settings for the request. Configure Apify proxy or custom proxy.

Default value of this property is {"useApifyProxy":false}

Request Timeout (seconds)

timeoutSecsintegerOptional

Maximum time to wait for the request to complete.

Default value of this property is 60

Follow Redirects

followRedirectsbooleanOptional

Whether to automatically follow HTTP redirects (3xx responses).

Default value of this property is true

Request Body Mode

bodyModeEnumOptional

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"

Retry Configuration

retryobjectOptional

Retry settings for transient failures and 5xx responses.

Default value of this property is {"attempts":1,"backoffSeconds":1}

Verbose Mode

verbosebooleanOptional

Enable verbose output for debugging. If false, only essential data is returned.

Default value of this property is false