error code 418

HTTP Error 418 = “I’m a teapot”
It’s a humorous HTTP status code from an April Fools’ joke protocol called HTCPCP (Hyper Text Coffee Pot Control Protocol).

Meaning

The server is refusing to brew coffee because it is “a teapot”.

In real-world apps

Developers sometimes use 418 for:

  • Blocking bots/scrapers
  • Rate limiting
  • Debug/testing responses
  • Custom API restrictions
  • WAF/CDN security rules

Example

http
HTTP/1.1 418 I’m a teapot

Common fixes

  • Check API request headers/authentication
  • Reduce request frequency
  • Verify endpoint URL
  • Disable VPN/proxy if blocked
  • Inspect backend custom status handling

Example in code

PHP

php
http_response_code(418);
echo “I’m a teapot”;

Node.js

js
res.status(418).send(“I’m a teapot”);

Laravel

php
abort(418, “I’m a teapot”);