Skip to content

Instantly share code, notes, and snippets.

View tallpants's full-sized avatar
💤

Adithya Reddy tallpants

💤
View GitHub Profile
async function main() {
const response = await fetch('https://api.iterable.com/api/lists/getUsers?listId=2982024', {
headers: {
'Api-Key': apiKey
}
});
console.log(await response.text());
}