2024-05-15 15:20:32 -04:00
|
|
|
---
|
2023-12-11 20:30:44 -05:00
|
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
SPDX-License-Identifier: curl
|
|
|
|
Long: json
|
|
|
|
Arg: <data>
|
|
|
|
Help: HTTP POST JSON
|
|
|
|
Protocols: HTTP
|
|
|
|
Mutexed: form head upload-file
|
|
|
|
Category: http post upload
|
|
|
|
Added: 7.82.0
|
|
|
|
Multi: append
|
2024-05-15 15:20:32 -04:00
|
|
|
See-also:
|
|
|
|
- data-binary
|
|
|
|
- data-raw
|
|
|
|
Example:
|
|
|
|
- --json '{ "drink": "coffe" }' $URL
|
|
|
|
- --json '{ "drink":' --json ' "coffe" }' $URL
|
|
|
|
- --json @prepared $URL
|
|
|
|
- --json @- $URL < json.txt
|
2023-12-11 20:30:44 -05:00
|
|
|
---
|
2024-05-15 15:20:32 -04:00
|
|
|
|
|
|
|
# `--json`
|
|
|
|
|
2023-12-11 20:30:44 -05:00
|
|
|
Sends the specified JSON data in a POST request to the HTTP server. --json
|
|
|
|
works as a shortcut for passing on these three options:
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
--data [arg]
|
|
|
|
--header "Content-Type: application/json"
|
|
|
|
--header "Accept: application/json"
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
|
|
There is **no verification** that the passed in data is actual JSON or that
|
|
|
|
the syntax is correct.
|
|
|
|
|
2024-05-15 15:20:32 -04:00
|
|
|
If you start the data with the letter @, the rest should be a filename to read
|
|
|
|
the data from, or a single dash (-) if you want curl to read the data from
|
|
|
|
stdin. Posting data from a file named 'foobar' would thus be done with --json
|
|
|
|
@foobar and to instead read the data from stdin, use --json @-.
|
2023-12-11 20:30:44 -05:00
|
|
|
|
|
|
|
If this option is used more than once on the same command line, the additional
|
|
|
|
data pieces are concatenated to the previous before sending.
|
|
|
|
|
|
|
|
The headers this option sets can be overridden with --header as usual.
|