How to use others API in my website?
To Use others API to get data, first thing you need is API_KEY. Some API's are : To get random quotes : https://api.kanye.rest { " quote ": "I don't expect to be understood at all." } To get random Jokes : h ttps://v2.jokeapi.dev/joke/Any ENDPOINT - > https://v2.jokeapi.dev/joke / this is an endpoint for api. To use Weather details in your website : Openweather API app . get ( "/" , function ( req , res ){ const weatherUrl = "https://api.openweathermap.org/data/2.5/weather? q=Dhangadhi&appid={api_key}&units=metric" ; https . get ( weatherUrl , function ( response ){ ...