Log Request Headers
Echoes back all incoming request headers, so you can see exactly what reaches the edge.
Endpoint
GET/utilities/log-request-headers
Returns every HTTP header sent with the request, in plain text. Header names come back lowercased.
Usage examples
Basic request
curl https://your-service.edgecompute.app/utilities/log-request-headers
With custom headers
curl https://your-service.edgecompute.app/utilities/log-request-headers \
-H "X-Custom-Header: test-value" \
-H "User-Agent: MyApp/1.0"
Testing authentication
curl https://your-service.edgecompute.app/utilities/log-request-headers \
-H "Authorization: Bearer your-token"
Expected response
HTTP/1.1 200 OK host: your-service.edgecompute.app user-agent: MyApp/1.0 x-custom-header: test-value accept: */* x-forwarded-for: 203.0.113.42 ...
Ready to test?
Send a request and see exactly which headers arrive at the edge.
Log my request headers