Search⌘ K
AI Features

Exercise: Talking to REST APIs over the Internet

Explore how to build a Go application that communicates with REST APIs over the Internet. Learn to fetch and parse JSON data from NASA's Astronomy Picture of the Day API, manage HTTP clients with timeouts, and download images efficiently.

We'll cover the following...

Challenge

In this exercise, your challenge is to create an application that talks to a REST API over the Internet.

Problem Statement

Use NASA’s public APOD (Astronomy Picture of the Day) to download today’s image.

Coding Challenge

Develop ...