Deliver JSON Data from Go APIs

Learn to encode data into JSON with Marshal and Encoder in Go

Jonathan Seow
Geek Culture
Published in
9 min readMay 26, 2021

--

Photo by Ferenc Almasi on Unsplash

If you have experience in developing RESTful APIs, you should be no stranger to JSON data.

JSON is text-based, lightweight, human-readable, and easy for machines to parse. Because of that, it quickly became one of the most widely used data formats in modern web APIs.

--

--