Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by bytelovers

Get all prices of oil stations by town in Spain

bytelovers's avatar
Alfredo de la Calle
// Name: Oil prices // Description: Prices of oil stations in Spain // Author: Alfredo de la Calle // Github: https://github.com/bytelovers import "@johnlindquist/kit"; import dayjs from "dayjs"; const baseUrl = "https://sedeaplicaciones.minetur.gob.es"; const basePath = `${baseUrl}/ServiciosRESTCarburantes/PreciosCarburantes`; const listadosEndpoint = `${basePath}/Listados`; const preciosEndpoint = `${basePath}/EstacionesTerrestresHist`; const previewEESS = async (municipalities) => { const EESSbyMunicipios = async (date = null, municipios) => { const _data = []; const prs = municipios.map(async (municipio) => { try {