Examples (4)
Send an empty request
grpcurl grpc.server.com:443 my.custom.server.Service/MethodSend a request with a header and a body
grpcurl -H "Authorization: Bearer $token" -d '{"foo": "bar"}' grpc.server.com:443 my.custom.server.Service/MethodList all services exposed by a server
grpcurl grpc.server.com:443 listList all methods in a particular service
grpcurl grpc.server.com:443 list my.custom.server.Servicemade by @shridhargupta | data from tldr-pages