HTTP status code lookup
ค้นหา HTTP status code ใดๆ — 1xx ถึง 5xx — ด้วยอธิบายในภาษาอังกฤษธรรมชาติ
- 100Continue
Server received the request headers; client should send the body.
- 101Switching Protocols
The server is switching protocols as requested by the client.
- 102Processing
Request received but not yet processed (WebDAV).
- 103Early Hints
Used to return some response headers before final HTTP message.
- 200OK
Standard success response.
- 201Created
Request succeeded and a new resource was created.
- 202Accepted
Request accepted for processing but not completed.
- 203Non-Authoritative Information
Returned metadata is from a third-party copy.
- 204No Content
Request succeeded but no content is returned.
- 205Reset Content
Request succeeded; client should reset the document view.
- 206Partial Content
Range request succeeded; partial content returned.
- 207Multi-Status
Body contains multiple statuses (WebDAV).
- 208Already Reported
Members of a DAV binding already enumerated.
- 226IM Used
Server fulfilled a GET request and the response is the result of one or more instance-manipulations.
- 300Multiple Choices
Request has more than one possible response.
- 301Moved Permanently
Resource moved to a new permanent URL.
- 302Found
Resource is temporarily at a different URL.
- 303See Other
Client should follow the response to a new URL with GET.
- 304Not Modified
Cached version is still valid; no body returned.
- 307Temporary Redirect
Same method should be used at the new URL.
- 308Permanent Redirect
Same as 301 but the request method must not change.
- 400Bad Request
Server cannot or will not process due to a client error.
- 401Unauthorized
Authentication required and has failed or not been provided.
- 402Payment Required
Reserved for future use, sometimes used for paywalls.
- 403Forbidden
Server understood but refuses to authorize.
- 404Not Found
The requested resource could not be found.
- 405Method Not Allowed
Request method is known but not supported by the resource.
- 406Not Acceptable
Resource cannot produce content matching the Accept headers.
- 407Proxy Authentication Required
Client must authenticate with the proxy.
- 408Request Timeout
Server timed out waiting for the request.
- 409Conflict
Request conflicts with the current state of the resource.
- 410Gone
Resource is no longer available and will not be available again.
- 411Length Required
Content-Length header is required.
- 412Precondition Failed
A precondition in the request headers was not met.
- 413Payload Too Large
Request entity is larger than the server is willing to process.
- 414URI Too Long
URI is longer than the server is willing to interpret.
- 415Unsupported Media Type
Media format of the request is not supported.
- 416Range Not Satisfiable
Requested range cannot be served.
- 417Expectation Failed
Expectation in Expect header could not be met.
- 418I'm a teapot
Server refuses to brew coffee because it is, permanently, a teapot.
- 421Misdirected Request
Request was directed to a server unable to produce a response.
- 422Unprocessable Entity
Request was well-formed but had semantic errors.
- 423Locked
Resource is locked (WebDAV).
- 424Failed Dependency
Request failed because of a previous failed request (WebDAV).
- 425Too Early
Server unwilling to risk processing a replay-vulnerable request.
- 426Upgrade Required
Client must upgrade to a different protocol.
- 428Precondition Required
Server requires the request to be conditional.
- 429Too Many Requests
Client has sent too many requests in a given amount of time.
- 431Request Header Fields Too Large
Headers are too large for the server to process.
- 451Unavailable For Legal Reasons
Resource cannot be served for legal reasons.
- 500Internal Server Error
Generic server error response.
- 501Not Implemented
Server does not support the request method.
- 502Bad Gateway
Server received an invalid response from an upstream server.
- 503Service Unavailable
Server is overloaded or down for maintenance.
- 504Gateway Timeout
Upstream server did not respond in time.
- 505HTTP Version Not Supported
HTTP version in the request is not supported.
- 506Variant Also Negotiates
Internal configuration error in transparent content negotiation.
- 507Insufficient Storage
Server is unable to store the representation (WebDAV).
- 508Loop Detected
Server detected an infinite loop while processing (WebDAV).
- 510Not Extended
Further extensions to the request are required.
- 511Network Authentication Required
Client needs to authenticate to gain network access.
Sourced from RFC 9110 and IANA HTTP status registry
เกี่ยวกับ HTTP status code lookup
HTTP status code lookup ของ Handytool เป็น quick reference สำหรับ HTTP status ทั้งหมด จาก 100 Continue ไปเป็น 511 Network Authentication Required ค้นหาด้วย code (404), name (Not Found) หรือ fragment ของ description; filter โดย class (1xx informational, 2xx success, 3xx redirect, 4xx client error, 5xx server error) Source จาก RFC 9110 และ IANA HTTP status registry รวม WebDAV และ extension อื่นๆ ที่คุณจะเห็นใน real-world API response
คุณสมบัติของ HTTP status code lookup
- 01
ค้นหาด้วย code หรือ meaning
พิมพ์ code, name หรือ phrase จาก description — list filter ทันที มีประโยชน์เมื่อคุณจำได้ว่า 422 หมายความว่า "something semantic" แต่จำไม่ได้ exact name
- 02
Class filter
Narrow list ไปยัง single class — 4xx เมื่อคุณ debug client error, 5xx เมื่อคุณ chase server bug, 3xx เมื่อคุณ untangle redirect chain
- 03
Plain-English explanation
Entry แต่ละอันมี one-sentence summary aimed ที่ developer — สิ่งที่ code ทำ actually ใน practice, ไม่ใช่เพียง formal RFC wording
คำถามที่พบบ่อยของ HTTP status code lookup
- ความแตกต่างระหว่าง 401 และ 403 คืออะไร?
- 401 Unauthorized หมายความว่า request ขาด valid authentication — log in และ retry 403 Forbidden หมายความว่าคุณ authenticate แต่ไม่ได้รับอนุญาต access resource — credential จะ ไม่ช่วย
- เมื่อไหร่ที่ฉันควร return 422 vs 400?
- 400 Bad Request สำหรับ malformed syntax (broken JSON, missing require field) 422 Unprocessable Entity สำหรับ syntactically valid request ที่ fail business validation (email already exist, age must be ≥ 18)
- 418 I'm a teapot เป็น real status code หรือไม่?
- ใช่ — defined เป็น April Fool joke ใน RFC 2324 (1998) และ reaffirm ใน RFC 7168 มันไม่ใช้โดย HTTP itself แต่ปรากฏใน IANA registry และ handful service return มันเป็น Easter egg
- อะไรเกิดขึ้นหลัง 5xx code ข้างบน 511?
- Code ข้างบน 511 ยัง unassigned ใน IANA registry คุณอาจเห็น custom 5xx code จาก specific platform (Cloudflare ใช้ 520-527 สำหรับ upstream issue) แต่ vendor-specific extension ไม่ใช่ standard HTTP
เครื่องมือที่เกี่ยวข้อง
สำหรับนักพัฒนา →- พร้อมใช้
MIME type lookup
ค้นหา MIME type โดยไฟล์ extension หรือค้นหาด้วย content type — cover image, video, audio, document และ font
สำหรับนักพัฒนาฟรีทำงานในเครื่องเปิด - พร้อมใช้
Regex tester
ทดสอบ JavaScript regular expressions กับข้อความใดๆ — ดูผลลัพธ์ที่ตรงกัน capture groups และการแทนที่แบบสดในเบราว์เซอร์ของคุณ
สำหรับนักพัฒนาฟรีทำงานในเครื่องเปิด - พร้อมใช้
Diff viewer
เปรียบเทียบข้อความสองส่วนแบบไซด์ต่อไซด์ — line, word หรือ character diff — เป็นแบบส่วนตัวในเบราว์เซอร์ของคุณ
สำหรับนักพัฒนาฟรีทำงานในเครื่องเปิด
สำรวจเครื่องมืออื่น ๆ
เครื่องมือทั้งหมด →- พร้อมใช้
PDF เป็น JPG
แปลงทุกหน้าของPDFเป็นภาพJPG, PNG หรือWebPที่คมชัดตรงในเบราว์เซอร์ — ไม่มีการอัปโหลด ไม่มีการสูญเสียคุณภาพ
PDFฟรีทำงานในเครื่องเปิด - พร้อมใช้
ลบพื้นหลัง
ลบพื้นหลังจากรูปภาพโดยใช้โมเดล AI ที่ทำงานในเบราว์เซอร์ — ไม่ต้องอัปโหลด รูปภาพของคุณจะอยู่ในอุปกรณ์ของคุณ
รูปภาพฟรีทำงานในเครื่องเปิด - พร้อมใช้
ตัดวิดีโอ
ตัดช่วงต้นหรือท้ายของวิดีโอในระดับเฟรม
วิดีโอฟรีเปิด - พร้อมใช้
ตัดเสียง
ตัดช่วงหนึ่งของไฟล์เสียง
เสียงฟรีทำงานในเครื่องเปิด - พร้อมใช้
Markdown เป็น HTML
แปลง Markdown เป็น HTML สะอาดตาได้เลยในเบราว์เซอร์ของคุณ
เอกสารฟรีทำงานในเครื่องเปิด