Category Archives: Protocol

What is gRPC and how does it differ from REST?

By | March 25, 2023

gRPC and REST are both popular ways to build APIs for client-server communication. Here are some differences between the two: Here’s an example of a gRPC endpoint response in the Protocol Buffers data format message Book { string title = 1; string author = 2; int32 published_year = 3; } message GetBookResponse { Book book… Read More »