> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lyzn.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# HTTP Request

> Make outbound HTTP requests to external APIs

# HTTP Request

Make outbound HTTP requests to external APIs

## Properties

| Property   | Value        |
| ---------- | ------------ |
| **Type**   | http-request |
| **Family** | Actions      |
| **Group**  | Generic      |

## Parameters

| Name              | Label          | Type     | Description                                                                  | Required |
| ----------------- | -------------- | -------- | ---------------------------------------------------------------------------- | -------- |
| url               | URL            | String   | The URL to send the request to. Supports expressions like \{\{ \$json.url }} | Yes      |
| method            | Method         | Select   |                                                                              | No       |
| authentication    | Authentication | Select   |                                                                              | No       |
| bearerToken       | Bearer Token   | String   | Bearer token for authentication                                              | No       |
| basicAuthUser     | Username       | String   | Username for basic authentication                                            | No       |
| basicAuthPassword | Password       | Password | Password for basic authentication                                            | No       |
| headers           | Headers        | JSON     | Request headers as key-value pairs                                           | No       |
| body              | Request Body   | JSON     | Request body (for POST, PUT, PATCH)                                          | No       |
| timeout           | Timeout (ms)   | Number   | Request timeout in milliseconds                                              | No       |

## Outputs

| Name       | Label      | Type   | Description      |
| ---------- | ---------- | ------ | ---------------- |
| statusCode | statusCode | number | HTTP status code |
| headers    | headers    | object | Response headers |
| body       | body       | any    | Response body    |
