diff --git a/content/roadmaps/101-backend/content/109-apis/103-grpc.md b/content/roadmaps/101-backend/content/109-apis/103-grpc.md
index ce7bea057..8df3c06c0 100644
--- a/content/roadmaps/101-backend/content/109-apis/103-grpc.md
+++ b/content/roadmaps/101-backend/content/109-apis/103-grpc.md
@@ -2,6 +2,8 @@
gRPC is a high-performance, open source universal RPC framework
+RPC stands for Remote Procedure Call, there's an ongoing debate on what the g stands for. RPC is a protocol that allows a program to execute a procedure of another program located on another computer. The great advantage is that the developer doesn’t need to code the details of the remote interaction. The remote procedure is called like any other function. But the client and the server can be coded in different languages.
+
Free Content
gRPC Website
gRPC Docs