Skip to main content
POST
/
post
Create Item (requestBody.required = true)
curl --request POST \
  --url https://httpbin.org/post \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "jsmith@example.com",
  "tags": [
    "<string>"
  ]
}
'
{}

Body

application/json
name
string

Optional name field

email
string<email>

Optional email field

tags
string[]

Optional list of tags

Response

Request echoed back by HTTPBin

The response is of type object.