Decode gRPC responses without a local CLI setup
gRPC uses protobuf as its default serialization format, which means response bodies captured from proxies, load balancers, or browser DevTools arrive as opaque binary or Base64 blobs. Decoding them typically requires grpcurl, a compiled client, or a reflection-enabled server. This page removes that friction by letting you paste the .proto schema and the response body directly in the browser — no CLI installation, no server access, and no compiled stubs.
The workflow is designed for the debugging scenario where you have a captured response and need to verify its contents quickly. Whether the payload came from an Envoy access log, a Charles Proxy export, a Wireshark capture, or the Network tab of a gRPC-Web application, you can decode it here as long as you have the matching .proto definition.