Use FindYourFate daily, weekly, monthly and yearly horoscope feeds securely with API keys. Each key can be locked to a customer website/domain, optional server IP, request limits and output format.
Get API KeyRead Integration GuideCustomer signs up with name, email and website domain.
Customer chooses Free, Starter, Professional or Enterprise plan.
Free keys activate after email verification. Paid keys activate after PayPal confirms the subscription.
Customer uses their private key on their approved website or server.
| Feed | Parameter | Example |
|---|---|---|
| Daily | type=daily | /api/horoscope.php?type=daily&sign=aries&apikey=YOUR_KEY |
| Weekly | type=weekly | /api/horoscope.php?type=weekly&sign=leo&apikey=YOUR_KEY |
| Monthly | type=monthly | /api/horoscope.php?type=monthly&sign=virgo&apikey=YOUR_KEY |
| Yearly | type=yearly | /api/horoscope.php?type=yearly&sign=pisces&apikey=YOUR_KEY |
aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces
Best for RSS readers, XML integrations and legacy customer sites.
Best for apps, JavaScript, mobile apps, Alexa skills and modern web dashboards.
API key hash storage, domain lock, optional IP lock, per-minute/day/month rate limits and request logs.
<?php
$url = 'https://www.findyourfate.com/api/horoscope.php?type=daily&sign=aries&format=rss&apikey=YOUR_API_KEY';
$xml = simplexml_load_file($url);
foreach ($xml->channel->item as $item) {
echo '<h2>' . htmlspecialchars($item->title) . '</h2>';
echo '<div>' . $item->description . '</div>';
}
?>