GnistAI GnistAI
Log in

Horoscopes

Zodiac sign information and deterministic daily horoscope readings — sign lookup, birthday-to-sign, compatibility, and daily fortunes.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 7 tools tools 7 7 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Entertainment

Data source: In-memory curated collection

REST Bridge Endpoint https://context.gnist.ai/rest/horoscopes/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (7)

list_zodiac_signs

List all 12 zodiac signs with their details.

Returns every sign's name, symbol, element, quality, ruling planet, date range,
personality traits, and compatible signs.

Request Body
{
  "query": "example"
}
get_zodiac_sign

Get detailed information about a specific zodiac sign.

Returns the sign's symbol, element, quality, ruling planet, date range,
personality traits, and compatible signs.

ParameterTypeRequiredDescription
namestringrequiredZodiac sign name (e.g. Aries, Taurus, Gemini). Case-insensitive.
Request Body
{
  "name": "example"
}
get_daily_horoscope

Get the daily horoscope for a zodiac sign.

Returns a horoscope reading, lucky number, lucky color, and mood for the day.
The reading is deterministic — the same sign and date always produce the same result.

ParameterTypeRequiredDescription
signstringrequiredZodiac sign name (e.g. Leo, Scorpio). Case-insensitive.
dateanyoptionalDate in YYYY-MM-DD format. Defaults to today.
Request Body
{
  "sign": "example"
}
get_zodiac_sign_by_birthday

Determine which zodiac sign a person is based on their birthday.

Takes a month and day and returns the corresponding zodiac sign with full details.

ParameterTypeRequiredDescription
monthintegerrequiredBirth month (1-12).
dayintegerrequiredBirth day (1-31).
Request Body
{
  "month": 1,
  "day": 1
}
check_zodiac_compatibility

Check astrological compatibility between two zodiac signs.

Returns a compatibility score (0-100) and description based on element pairings
and traditional astrological compatibility.

ParameterTypeRequiredDescription
sign1stringrequiredFirst zodiac sign name. Case-insensitive.
sign2stringrequiredSecond zodiac sign name. Case-insensitive.
Request Body
{
  "sign1": "example",
  "sign2": "example"
}
list_astrological_elements

List the four classical elements used in astrology.

The elements are Fire, Earth, Air, and Water. Each zodiac sign belongs to one element.

Request Body
{
  "query": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/horoscopes/get_zodiac_sign" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"name": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/horoscopes/get_zodiac_sign",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "name": "example"
},
)
print(resp.json())

Related Toolkits (Entertainment)

Resources