| accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| accept-encoding | gzip, br |
| accept-language | en-US,en;q=0.5 |
| cf-connecting-ip | 2600:1f28:365:80b0:ce33:d266:e01c:ed64 |
| cf-ipcountry | US |
| cf-ray | 9ff5f7e92ef1d6b5 |
| cf-visitor | {"scheme":"https"} |
| connection | Keep-Alive |
| host | echo.mirio.dev |
| if-modified-since | Sun, 19 Apr 2026 04:32:49 GMT |
| user-agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
| x-forwarded-proto | https |
| x-real-ip | 2600:1f28:365:80b0:ce33:d266:e01c:ed64 |
No body sent
# Echo a GET request
curl https://echo.mirio.dev/any/path
# POST with JSON body
curl -X POST -d '{"key":"value"}' -H 'Content-Type: application/json' https://echo.mirio.dev/
# Get response as JSON
curl https://echo.mirio.dev/?format=json | jq
# POST form data
curl -X POST -d 'name=alice&age=30' https://echo.mirio.dev/