curl command converter
Convert literal curl arguments between Bash, PowerShell and Windows cmd.
curlLook up HTTP response codes by number or English/Chinese keywords. Distinguish success, redirects, client errors and server errors with troubleshooting tips.
Filter by code or English/Chinese keywords. 1xx informational, 2xx success, 3xx redirection, 4xx client error, 5xx server error.
404The result should show Not Found. A status code describes response semantics but does not identify which configuration layer caused it.
401 indicates missing valid authentication credentials; 403 means the server understands the request but refuses it. Systems may obscure resource details with different responses; check authentication and authorization logs.
502 concerns an invalid upstream response at a gateway; 504 concerns an upstream timeout. Correlate gateway and upstream logs at the same time instead of relying on a page refresh alone.
Not necessarily. It indicates HTTP-level success, while an application may report business failure in the body. Check the application status and response structure too.