Horoscope Free API
Horoscope 3 days data
https://any.ge/horoscope/api/?sign=aquarius&type=daily&day=today&lang=en
sign
: aquarius horoscope signtype
: dailyday
: all | yesterday | today | tomorrowlang
: en | ge
How to use JSON?
Php
$url = "https://any.ge/horoscope/api/?sign=aquarius&type=daily&day=today";
$contents = file_get_contents($url);
$results = json_decode($contents,true);
print_r($results);
Javascript
fetch(`https://any.ge/horoscope/api/?sign=aquarius&type=daily&day=today`)
.then(response => response.json())
.then(json => {
this.data = json;
});