HomeHoroscope APIHow to UseFAQ

Horoscope API for Websites, Apps & RSS Readers

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 Guide
Important: Public bot-heavy feed URLs are now replaced by secured API-key feed URLs. Existing customer integrations should move to the new endpoint format below.

How Customers Get Access

Create Account

Customer signs up with name, email and website domain.

Request API Key

Customer chooses Free, Starter, Professional or Enterprise plan.

Automatic Activation

Free keys activate after email verification. Paid keys activate after PayPal confirms the subscription.

Use Feed URL

Customer uses their private key on their approved website or server.

Secure API URL

https://www.findyourfate.com/api/horoscope.php?type=daily&sign=aries&format=rss&apikey=YOUR_API_KEY

Available Feeds

FeedParameterExample
Dailytype=daily/api/horoscope.php?type=daily&sign=aries&apikey=YOUR_KEY
Weeklytype=weekly/api/horoscope.php?type=weekly&sign=leo&apikey=YOUR_KEY
Monthlytype=monthly/api/horoscope.php?type=monthly&sign=virgo&apikey=YOUR_KEY
Yearlytype=yearly/api/horoscope.php?type=yearly&sign=pisces&apikey=YOUR_KEY

Zodiac Signs

aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces

RSS/XML Output

format=rss

Best for RSS readers, XML integrations and legacy customer sites.

JSON Output

format=json

Best for apps, JavaScript, mobile apps, Alexa skills and modern web dashboards.

Security

API key hash storage, domain lock, optional IP lock, per-minute/day/month rate limits and request logs.

PHP Example

<?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>';
}
?>

Customer Links

Create Customer AccountCustomer LoginAPI FAQ