Upload a .proto file and mock service methods with realistic JSON payloads over an HTTP gRPC-compatible surface.
.proto file. Preview services and methods (unary, client streaming, server streaming), then import.Each RPC method becomes an endpoint. Paths follow the standard gRPC form /package.Service/Method (package omitted when the proto has no package).
Methods are invoked with HTTP POST and JSON bodies using application/grpc+json:
Unary methods return a single JSON object. Server-streaming methods return a streamed response of mock chunks.
On a gRPC project, the tester shows a gRPC panel: method path, streaming badges when applicable, and a JSON request body. Send the request to exercise the mock without leaving the project page.
application/grpc+json, not native binary gRPC over HTTP/2Importing a .proto into a REST (or other) project fails with HTTP 409. Create a dedicated gRPC project. See Choosing a Protocol.