Country metadata for forms, flags, and locale pickers — one GET, tiny JSON.
const u = 'https://restcountries.com/v3.1/name/nicaragua?fields=name,capital,flags'; const res = await fetch(u); const data = await res.json(); console.log(data[0]);
Use ?fields=name,capital,flags to strip payloads — skip downloading full country blobs.