import json def handler(request): return { "statusCode": 200, "headers": { "Content-Type": "application/json" }, "body": json.dumps({ "message": "Hello from Vercel!", "status": "working", "note": "This proves the API routes are functional" }) }