Skip to main content

NodeJS

After generating an Access Token following the guide in the API Docs.

const url = 'https://api.quartzy.com/user';

fetch(url, {
method: 'GET',
headers: {
'Access-Token': 'some-access-token',
},
});