This public, read-only Cloud Run function demonstrates simple HTTP API concepts: paths, methods, query parameters, JSON request bodies, safe headers, and JSON responses.
GET / — this landing page.GET /healthz/ — health check JSON.GET /echo-path — method, path, query parameters, safe headers, and timestamp.POST /reverse — reverse a JSON string, array, or object key order.POST /inspect — safe request summary with JSON parsing.GET /time — current UTC time and request metadata.curl http://api.johnfiocca.com/curl http://api.johnfiocca.com/healthz/curl 'http://api.johnfiocca.com/echo-path?name=John&demo=true'curl -X POST http://api.johnfiocca.com/reverse -H 'Content-Type: application/json' -d '"hello"'curl -X POST http://api.johnfiocca.com/inspect -H 'Content-Type: application/json' -d '{"demo":true}'curl http://api.johnfiocca.com/time