// generate a key at https://www.bing.com/indexnow/getstarted const key = 'REPLACE_ME'; export const submitUrlsToIndexNow = async (urls: string[]) => { await fetch('https://api.indexnow.org/IndexNow', { body: JSON.stringify({ host: 'pillser.com', key, keyLocation: `https://pillser.com/${key}.txt`, urlList: urls, }), headers: { 'Content-Type': 'application/json', }, method: 'POST', }); };
Thanks!
Thanks!