# HttpRequest `Maestro\Core\Task\HttpRequestTask` Perform a HTTP request ## Parameters - **url** - `string` - **method** - `string` - **headers** - `array)>` - **body** - `?string` ## Description Use this task to send a HTTP request. The response will be made available in the next task. ```php new HttpRequestTask( url: 'https://www.example.com/do/something', method: 'POST', body: 'hello' ); ``` You can access the results in the subsequent task: ```php new SequentialTask([ new HttpRequestTask( url: 'https://www.example.com/do/something' ), new Maestro\Core\Task\ClosureTask( closure: function (Context $context) { $response = $context->result(); // do something return $context; } ) ]);