| 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:4c3:3444:4978:8f3a |
| cf-ipcountry | US |
| cf-ray | a0cee711e94ef270 |
| cf-visitor | {"scheme":"https"} |
| connection | Keep-Alive |
| host | echo.mirio.dev |
| if-modified-since | Thu, 21 May 2026 19:25:40 GMT |
| user-agent | CCBot/2.0 (https://commoncrawl.org/faq/) |
| x-forwarded-proto | https |
| x-real-ip | 2600:1f28:365:80b0:4c3:3444:4978:8f3a |
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/