Swift: Making a modern API client with Async/Await

Saad El Oulladi
2 min readAug 18, 2022

Nowadays, most of all popular mobile applications use Rest api to access dynamic data.

That’s why Apple did a lot of improvement in network layer and concurrency in the recent Swift releases.

In the following article, we will cover how to create an API client component that allows to call a remote API and parse its result into models using async/await.

--

--