Ссылка на API - https://rapidapi.com/koukoulina001/api/astronomy-picture-of-the-day/pricing
На данный API нужно подписаться по ссылке, после чего станут доступным запросы на сервер astronomy-picture-of-the-day
Пример запроса для Vue
import {ref, onBeforeMount} from "vue"; import axios from "axios"; const picture = ref({'data':{'url':''}}); onBeforeMount(async () => { picture.value = await pictures(); }); const pictures = async () => { const options = { method: 'GET', url: 'https://astronomy-picture-of-the-day.p.rapidapi.com/apod', params: {api_key: 'nWYhQQdmCKwd0cVvrfyge124OrW4fnVOEL7QDdJH'}, headers: { 'X-RapidAPI-Key': '3ea575d164msh0d4f30e1df818b9p1b9782jsn2515200d115d', 'X-RapidAPI-Host': 'astronomy-picture-of-the-day.p.rapidapi.com' } }; let stoba = await axios.request(options) return stoba; };
Практика