Yes, you can use tonapi.io for that:
const nftAddress = 'EQBFSbR4087JZ3Em7HQ3FfPz5-_q6T1UGmQqQGAcPuiFdGJ-'
fetch(`https://tonapi.io/v1/nft/getItems?addresses=${nftAddress}`)
.then((data) => {
return data.json()
})
.then((res) => {
const nft_item = res.nft_items[0]
const price = nft_item.sale.price.value / 10 ** 9 // it is necessary to divide by 10^9, because the value initially given in nanoTON's
console.log(`${price} ${nft_item.sale.price.token_name}`)
})