Home Explore Blog CI



nushell

1st chunk of `commands/docs/http.md`
c595921b4028d4d673d4daf8b3d0dfd1a41a362888ec10b5000000010000073b
---
title: http
categories: |
  network
version: 0.104.0
network: |
  Various commands for working with http methods.
usage: |
  Various commands for working with http methods.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `http` for [network](/commands/categories/network.md)

<div class='command-title'>Various commands for working with http methods.</div>

## Signature

```> http {flags} ```


## Input/output types:

| input   | output |
| ------- | ------ |
| nothing | string |
## Notes
You must use one of the following subcommands. Using this command as-is will only produce this help message.

## Subcommands:

| name                                             | description                                               | type     |
| ------------------------------------------------ | --------------------------------------------------------- | -------- |
| [`http delete`](/commands/docs/http_delete.md)   | Delete the specified resource.                            | built-in |
| [`http get`](/commands/docs/http_get.md)         | Fetch the contents from a URL.                            | built-in |
| [`http head`](/commands/docs/http_head.md)       | Get the headers from a URL.                               | built-in |
| [`http options`](/commands/docs/http_options.md) | Requests permitted communication options for a given URL. | built-in |
| [`http patch`](/commands/docs/http_patch.md)     | Patch a body to a URL.                                    | built-in |
| [`http post`](/commands/docs/http_post.md)       | Post a body to a URL.                                     | built-in |
| [`http put`](/commands/docs/http_put.md)         | Put a body to a URL.                                      | built-in |

Title: http command documentation
Summary
This document describes the `http` command in Nushell, which provides subcommands for interacting with HTTP methods such as GET, POST, PUT, DELETE, PATCH, HEAD, and OPTIONS. It's part of the network category and offers functionality for fetching content, managing resources, and retrieving headers from URLs.