Skip to content

201

Easy — everyone uses thisBackend

ELI5 — The Vibe Check

201 Created is like 200 but specifically for when something NEW was made. When you sign up for an app and the server creates your account, you should get a 201 back. 'Request worked AND we made a new thing.'

Real Talk

HTTP 201 Created indicates that the request succeeded and a new resource was created as a result. It's typically returned from POST endpoints that create resources. The response often includes the created resource and a Location header pointing to it.

When You'll Hear This

"POST to /users should return 201 with the new user." / "Always return 201, not 200, when creating a resource."

Made with passive-aggressive love by manoga.digital. Powered by Claude.