Get Verse (Live Fetch Example)
Retrieve a single verse by book, chapter, and verse number.
const res = await fetch(
'https://thebibleapi.netlify.app/.netlify/functions/getVerse'
+ '?book=John&chapter=3&verse=16&translation=web'
);
const data = await res.json();
console.log(data.text);