Home HTTP Status Codes 201 Created

201 Created

Success

The request has succeeded and a new resource has been created as a result.

Explanation

The 201 (Created) status code indicates that the request has been fulfilled and has resulted in one or more new resources being created. The primary resource created by the request is identified by either a Location header field or the request URI if no Location field is provided.

The 201 response payload typically describes and links to the resource(s) created. If the payload format allows, a reference to the primary resource created should be included along with its location provided in a Location header field.

Example Response

HTTP/1.1 201 Created
Location: /users/12345
Content-Type: application/json

{"id":"12345","name":"John Doe"}

Related Status Codes

Check where URLs redirect to with our free URL redirect checker.

Check URL Redirects