Back to HTTP Check Tool
2xx · Success

201Created

The request has been fulfilled and a new resource has been created.

What is HTTP 201?

The 201 Created status means the request succeeded and a new resource was created. The new resource's URI is typically returned in the Location header. Used with POST or PUT requests.

Example

POST /api/users → 201 Created, Location: /api/users/42

Check a URL in real-time

Use our HTTP ping tool to check the actual status code of any URL.

Try httping.io →

Common Use Cases

  • Creating a new user
  • Uploading a file
  • Submitting a new order

Quick Facts

Code201
Category2xx
TypeSuccess

Related 2xx Codes