Send RequestsgRPCgRPC Request

gRPC Request

Bruno provides comprehensive support for gRPC requests, enabling you to test and interact with gRPC services directly from the interface. With Bruno’s gRPC support, you can:

  • Add Proto files for enhanced IntelliSense and method discovery
  • Call server methods with full parameter support
  • Test real-time streaming APIs including unary, server streaming, client streaming, and bidirectional streaming
  • Debug gRPC services with detailed request/response inspection

gRPC Interface

gRPC Iiterface

Creating a gRPC Request

Step 1: Enable gRPC Support

First, you need to enable gRPC support in Bruno’s beta features:

  1. Go to Settings > Beta
  2. Check the Enable checkbox for gRPC support

Enable gRPC Support

Step 2: Create a gRPC Request

  1. Open collection context menu and select New Request from dropdown.
  2. Select gRPC as your request type.
  3. Enter the service endpoint in the URL field.

Create gRPC Request

Step 3: Configure the Request

  1. Choose the method you want to call from the dropdown
  2. Add any required inputs in the message section.

Select Method

Step 4: Send the Request

Click the Send button to execute your gRPC request.

Add Message and Receive Response

You’ll see relevant response in the Response section.

To learn about proto files, navigate to the Adding Proto file section.