With axios installed, you can load data and store it into your Vuex store on the server-side before your app even renders. This lesson walks you through using axios to load data in a Nuxt news app and adding it to the store to display on any page.
The correct axios get
for json
items from hackernews:
axios.get(`item/${id}.json?print=pretty`)
From https://github.com/HackerNews/API