"use strict"; fetch('https://earth-for-all.com/twentyseventeen/wp-json/wp/v2/pages/2?_embed') .then(data => { if (!data.ok) { throw Error(data.status) } return data.json() }) .then(page => { var txt="" txt = "
Page ID: " + page['id'] + "
" txt += "Date: " + page['date'] + "
" txt += "Slug: " + page['slug'] + "
" txt += "Link: " + page['link'] + "
" txt += "Content: " + page.content['rendered'] + "
" txt += "