HTTP Status Code Reference

Complete reference for all HTTP status codes with descriptions, common causes, troubleshooting tips, and example headers.

4

1xx Informational

10

2xx Success

7

3xx Redirection

26

4xx Client Error

11

5xx Server Error

Check HTTP Statuses Programmatically

Use the ScrapeForge API to check HTTP status codes of any URL programmatically. Perfect for monitoring, uptime checks, and link validation.

curl -X POST https://searchhive.dev/api/v1/scrapeforge \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com", "method": "HEAD"}'

# Response includes:
# {
#   "status_code": 200,
#   "status_text": "OK",
#   "headers": {...},
#   "response_time_ms": 142
# }
View ScrapeForge API Docs →