astro_lookup
Reference lookup — Sabian symbols (Paid), astrology-term encyclopedia (Free).
- Layer: utility
- Methods: sabian-symbol, astrology-term
- Free tier: astrology-term
- Paid tier: sabian-symbol
Description
Reference lookup — Sabian symbols (Paid), astrology-term encyclopedia (Free).
Methods:
sabian-symbol [Paid] — Marc Edmund Jones Sabian symbol for a longitude or sign+degree
astrology-term [Free] — deVore-style encyclopedia definition + aliases for an astrology term
Input schema
sabian-symbol
| Field | Type | Required | Constraints |
|---|---|---|---|
| longitude | number | no | min 0, max 360 |
| sign | enum(12) | no | — |
| degree | number | no | min 1, max 30 |
Example request
{
"method": "sabian-symbol",
"sign": "Capricorn",
"degree": 11
}
Example response (captured; long values elided)
{
"sign": "Capricorn",
"degree": 11,
"absoluteDegree": 281,
"symbol": null,
"datasetComplete": false
}
astrology-term
| Field | Type | Required | Constraints |
|---|---|---|---|
| term | string | yes | minLength 1, maxLength 100 |
Example request
{
"method": "astrology-term",
"term": "cazimi"
}
Example response (captured; long values elided)
{
"query": "cazimi",
"match": {
"term": "cazimi",
"aliases": [
"in cazimi"
],
"category": "point",
"definition": "A planet is in cazimi when it is extremely close to the Sun, within about 17 minutes of arc. Traditional astrology treat… (181 chars total)"
},
"suggestions": []
}