In order to send JSON data as payload with an HTTP Post cURL request you need to add,
1. The JSON Header for Content-type
-H "Content-Type: application/json"
2. Include the JSON data payload using --data flag
--data '{"city":"USA","state":"New York"}'
Complete Example
curl -X POST \
-H "Content-Type: application/json" \
--data '{"city":"USA","state":"New York"}' \
http://example.com/api/endpoint
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to cURL,
- cURL Option to show HTTP Response Status Code
- URL Encode cURL HTTP GET\POST Data with Examples
- Capture cURL Request Output to a File
- Fix: Curl No Match Found Error
- trurl: A new command-line tool for URL parsing and manipulation by cURL Developer
- Send JSON Data as Payload using cURL HTTP POST Request
- cURL: Show Request and Response Headers
- Get cURL command from Chrome Inspect Network HTTP URL
- Save cURL Command Output to a external file
- cURL DELETE Request with Examples
- How to URL Encode Data for a cURL Request Parameters
- cURL Example using IP (IPv4 and IPv6) address and Port
- How to convert a Postman request to cURL Command
- [fix] command not found curl
- How to Pretty Print cURL JSON Output in Terminal
- How to follow redirects in cURL Command Request
- How to pass authorization header using cURL
- cURL -x Use of HTTP Proxy Server Examples
- Downloading Google Chrome using cURL Command
- How to get cURL Command to run in verbose mode?
- List of 28 Protocols supported by cURL with Examples
- Hide cURL Outputs and Errors on Terminal
- cURL -d Option with Examples
- How to show SSL Certificate details using cURL Command
- Perform Basic Authentication using cURL with Examples
More Posts:
- How to Check for Not None in Python Programming - Python
- How to Hardcode Date in Java with Examples - Java
- How to add multiple spaces between html page text - Html
- How to: Docker Remove Image - Docker
- Get FIle Size using PowerShell - Powershell
- How to list all versions of Python Modules Available using pip/pip3 - PIP
- 33: Python Program to find the current time in India (IST) - Python-Programs
- How to Change the Default Rows and Columns Size of Windows Terminal - Windows