@roxyapi/sdk 1.2.30 → 1.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +2 -0
- package/README.md +2 -0
- package/dist/factory.cjs +281 -1
- package/dist/factory.js +279 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +111 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +3994 -6
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/docs/llms-full.txt +1020 -383
- package/package.json +1 -1
- package/src/index.ts +2 -2
- package/src/sdk.gen.ts +296 -1
- package/src/types.gen.ts +4079 -6
- package/src/version.ts +1 -1
package/docs/llms-full.txt
CHANGED
|
@@ -9,7 +9,9 @@ import { createRoxy } from '@roxyapi/sdk';
|
|
|
9
9
|
const roxy = createRoxy(process.env.ROXY_API_KEY!);
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
<!-- BEGIN:LANGS -->
|
|
13
|
+
**Multi-language responses.** Interpretations are available in 8 languages: `en`, `tr`, `de`, `es`, `hi`, `pt`, `fr`, `ru`. Pass `query: { lang }` on any supported endpoint. Supported: astrology, vedicAstrology, numerology, tarot, humanDesign, forecast, biorhythm, iching, crystals, angelNumbers. English-only: dreams, location, usage, languages. Languages without translations yet fall back to English.
|
|
14
|
+
<!-- END:LANGS -->
|
|
13
15
|
|
|
14
16
|
```typescript
|
|
15
17
|
const { data } = await roxy.astrology.getDailyHoroscope({
|
|
@@ -20,693 +22,1328 @@ const { data } = await roxy.astrology.getDailyHoroscope({
|
|
|
20
22
|
|
|
21
23
|
---
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
<!-- Method sections below are generated from the OpenAPI spec by scripts/sync-docs.ts. Do not hand-edit between the BEGIN/END:METHODS markers; edit the spec instead. The intro above and the Error Handling / Advanced / Links sections below are curated. -->
|
|
26
|
+
<!-- BEGIN:METHODS -->
|
|
24
27
|
|
|
25
|
-
|
|
28
|
+
## Western Astrology — `roxy.astrology`
|
|
26
29
|
|
|
27
|
-
|
|
30
|
+
Production-ready Western astrology API + remote MCP for AI agents and developers
|
|
28
31
|
|
|
29
32
|
```typescript
|
|
30
|
-
//
|
|
31
|
-
const { data } = await roxy.astrology.getDailyHoroscope({
|
|
32
|
-
path: { sign: 'aries' },
|
|
33
|
-
});
|
|
34
|
-
// Returns: { sign, date, overview, love, career, health, finance, advice, luckyNumber, luckyColor, compatibleSigns }
|
|
35
|
-
|
|
36
|
-
// All 12 daily horoscopes
|
|
37
|
-
const { data } = await roxy.astrology.getAllDailyHoroscopes();
|
|
38
|
-
|
|
39
|
-
// Weekly horoscope
|
|
40
|
-
const { data } = await roxy.astrology.getWeeklyHoroscope({ path: { sign: 'aries' } });
|
|
41
|
-
|
|
42
|
-
// Monthly horoscope
|
|
43
|
-
const { data } = await roxy.astrology.getMonthlyHoroscope({ path: { sign: 'aries' } });
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
Valid signs: `aries`, `taurus`, `gemini`, `cancer`, `leo`, `virgo`, `libra`, `scorpio`, `sagittarius`, `capricorn`, `aquarius`, `pisces`
|
|
47
|
-
|
|
48
|
-
### Zodiac Signs and Planets
|
|
49
|
-
|
|
50
|
-
```typescript
|
|
51
|
-
// All 12 zodiac signs
|
|
33
|
+
// Get all zodiac signs - Complete zodiac signs list with dates and elements
|
|
52
34
|
const { data } = await roxy.astrology.listZodiacSigns();
|
|
53
35
|
|
|
54
|
-
//
|
|
55
|
-
const { data } = await roxy.astrology.getZodiacSign({ path: {
|
|
36
|
+
// Get zodiac sign details - Complete astrology sign profile with personality traits
|
|
37
|
+
const { data } = await roxy.astrology.getZodiacSign({ path: { id: 'aries' } });
|
|
56
38
|
|
|
57
|
-
//
|
|
39
|
+
// Get all planet meanings - Complete astrology planet interpretations list
|
|
58
40
|
const { data } = await roxy.astrology.listPlanetMeanings();
|
|
59
41
|
|
|
60
|
-
//
|
|
61
|
-
const { data } = await roxy.astrology.getPlanetMeaning({ path: {
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### Birth Charts and Calculations
|
|
65
|
-
|
|
66
|
-
All POST. Body requires: `date` (YYYY-MM-DD), `time` (HH:MM:SS), `latitude`, `longitude`. Optional: `timezone` (IANA, e.g. "America/New_York").
|
|
42
|
+
// Get planet meaning details - Complete astrology planet interpretation
|
|
43
|
+
const { data } = await roxy.astrology.getPlanetMeaning({ path: { id: 'sun' } });
|
|
67
44
|
|
|
68
|
-
|
|
69
|
-
// Natal chart — 10 planets, 12 houses, aspects
|
|
45
|
+
// Generate natal chart - Birth chart calculator API with houses and aspects
|
|
70
46
|
const { data } = await roxy.astrology.generateNatalChart({
|
|
71
|
-
body: {
|
|
47
|
+
body: {
|
|
48
|
+
date: '1990-07-15',
|
|
49
|
+
time: '14:30:00',
|
|
50
|
+
latitude: 40.7128,
|
|
51
|
+
longitude: -74.006,
|
|
52
|
+
timezone: -5,
|
|
53
|
+
houseSystem: 'placidus',
|
|
54
|
+
},
|
|
72
55
|
});
|
|
73
56
|
|
|
74
|
-
//
|
|
57
|
+
// Get planetary positions - Ephemeris calculator for all planets
|
|
75
58
|
const { data } = await roxy.astrology.getPlanetaryPositions({
|
|
76
|
-
body: {
|
|
59
|
+
body: {
|
|
60
|
+
date: '2025-12-18',
|
|
61
|
+
time: '12:00:00',
|
|
62
|
+
latitude: 40.7128,
|
|
63
|
+
longitude: -74.006,
|
|
64
|
+
timezone: -5,
|
|
65
|
+
},
|
|
77
66
|
});
|
|
78
67
|
|
|
79
|
-
//
|
|
80
|
-
const { data } = await roxy.astrology.
|
|
81
|
-
|
|
68
|
+
// Get current moon phase - Lunar phase calculator with zodiac sign
|
|
69
|
+
const { data } = await roxy.astrology.getCurrentMoonPhase({
|
|
70
|
+
query: { date: '2025-12-18', time: '12:00:00', timezone: 0 },
|
|
82
71
|
});
|
|
83
72
|
|
|
84
|
-
//
|
|
85
|
-
const { data } = await roxy.astrology.
|
|
86
|
-
body: { date: '1990-01-15', time: '14:30:00', latitude: 28.6139, longitude: 77.209 },
|
|
87
|
-
});
|
|
73
|
+
// Get upcoming moon phases - Next new moon, full moon, quarters
|
|
74
|
+
const { data } = await roxy.astrology.getUpcomingMoonPhases({ query: { startDate: '2025-12-18', count: 8 } });
|
|
88
75
|
|
|
89
|
-
//
|
|
90
|
-
const { data } = await roxy.astrology.
|
|
91
|
-
body: { date: '2026-03-27', time: '12:00:00', latitude: 28.6139, longitude: 77.209 },
|
|
92
|
-
});
|
|
76
|
+
// Get lunar calendar - Moon phases for entire month
|
|
77
|
+
const { data } = await roxy.astrology.getMoonCalendar({ path: { year: 2026, month: 3 } });
|
|
93
78
|
|
|
94
|
-
//
|
|
95
|
-
const { data } = await roxy.astrology.
|
|
96
|
-
body: {
|
|
79
|
+
// Calculate synastry - Relationship compatibility analysis API
|
|
80
|
+
const { data } = await roxy.astrology.calculateSynastry({
|
|
81
|
+
body: {
|
|
82
|
+
person1: {
|
|
83
|
+
date: '1990-07-15',
|
|
84
|
+
time: '14:30:00',
|
|
85
|
+
latitude: 40.7128,
|
|
86
|
+
longitude: -74.006,
|
|
87
|
+
timezone: -5,
|
|
88
|
+
name: 'Alex',
|
|
89
|
+
},
|
|
90
|
+
person2: {
|
|
91
|
+
date: '1990-07-15',
|
|
92
|
+
time: '14:30:00',
|
|
93
|
+
latitude: 40.7128,
|
|
94
|
+
longitude: -74.006,
|
|
95
|
+
timezone: -5,
|
|
96
|
+
name: 'Alex',
|
|
97
|
+
},
|
|
98
|
+
houseSystem: 'placidus',
|
|
99
|
+
},
|
|
97
100
|
});
|
|
98
|
-
```
|
|
99
101
|
|
|
100
|
-
|
|
102
|
+
// Calculate house cusps - House system calculator with comparison
|
|
103
|
+
const { data } = await roxy.astrology.calculateHouses({
|
|
104
|
+
body: {
|
|
105
|
+
date: '1990-07-15',
|
|
106
|
+
time: '14:30:00',
|
|
107
|
+
latitude: 40.7128,
|
|
108
|
+
longitude: -74.006,
|
|
109
|
+
timezone: -5,
|
|
110
|
+
houseSystem: 'placidus',
|
|
111
|
+
},
|
|
112
|
+
});
|
|
101
113
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
const { data } = await roxy.astrology.calculateCompatibility({
|
|
114
|
+
// Calculate planetary aspects - Aspect finder for any date and time
|
|
115
|
+
const { data } = await roxy.astrology.calculateAspects({
|
|
105
116
|
body: {
|
|
106
|
-
|
|
107
|
-
|
|
117
|
+
date: '1990-07-15',
|
|
118
|
+
time: '14:30:00',
|
|
119
|
+
timezone: -5,
|
|
120
|
+
planets: ['Sun', 'Moon', 'Mercury', 'Venus', 'Mars'],
|
|
121
|
+
aspectTypes: ['CONJUNCTION', 'OPPOSITION', 'TRINE', 'SQUARE'],
|
|
108
122
|
},
|
|
109
123
|
});
|
|
110
124
|
|
|
111
|
-
//
|
|
112
|
-
const { data } = await roxy.astrology.
|
|
125
|
+
// Detect aspect patterns - Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium
|
|
126
|
+
const { data } = await roxy.astrology.detectAspectPatterns({
|
|
127
|
+
query: { strictOrbs: 'false', include: '' },
|
|
113
128
|
body: {
|
|
114
|
-
|
|
115
|
-
|
|
129
|
+
date: '1955-02-24',
|
|
130
|
+
time: '19:15:00',
|
|
131
|
+
latitude: 37.77,
|
|
132
|
+
longitude: -122.42,
|
|
133
|
+
timezone: -8,
|
|
116
134
|
},
|
|
117
135
|
});
|
|
118
136
|
|
|
119
|
-
//
|
|
120
|
-
const { data } = await roxy.astrology.
|
|
137
|
+
// Calculate planetary transits - Current transits with natal chart comparison
|
|
138
|
+
const { data } = await roxy.astrology.calculateTransits({
|
|
139
|
+
body: { date: '2025-12-19', time: '12:00:00', timezone: 0 },
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
// Transit Aspects - Detailed transit-to-natal aspect analysis with interpretations
|
|
143
|
+
const { data } = await roxy.astrology.calculateTransitAspects({
|
|
121
144
|
body: {
|
|
122
|
-
|
|
123
|
-
|
|
145
|
+
natalChart: {
|
|
146
|
+
date: '1990-07-15',
|
|
147
|
+
time: '14:30:00',
|
|
148
|
+
latitude: 40.7128,
|
|
149
|
+
longitude: -74.006,
|
|
150
|
+
timezone: -5,
|
|
151
|
+
},
|
|
152
|
+
transitDate: '2026-02-03',
|
|
153
|
+
transitTime: '12:00:00',
|
|
154
|
+
minStrength: 50,
|
|
124
155
|
},
|
|
125
156
|
});
|
|
126
157
|
|
|
127
|
-
// Solar
|
|
158
|
+
// Solar Return Chart - Annual birthday forecast with relocated chart
|
|
128
159
|
const { data } = await roxy.astrology.generateSolarReturn({
|
|
129
|
-
body: {
|
|
160
|
+
body: {
|
|
161
|
+
birthDate: '1990-07-15',
|
|
162
|
+
birthTime: '14:30:00',
|
|
163
|
+
returnYear: 2026,
|
|
164
|
+
latitude: 40.7128,
|
|
165
|
+
longitude: -74.006,
|
|
166
|
+
timezone: -5,
|
|
167
|
+
houseSystem: 'placidus',
|
|
168
|
+
},
|
|
130
169
|
});
|
|
131
170
|
|
|
132
|
-
// Lunar
|
|
171
|
+
// Lunar Return Chart - Monthly emotional forecast with Moon cycle chart
|
|
133
172
|
const { data } = await roxy.astrology.generateLunarReturn({
|
|
134
|
-
body: {
|
|
173
|
+
body: {
|
|
174
|
+
birthDate: '1990-07-15',
|
|
175
|
+
birthTime: '14:30:00',
|
|
176
|
+
returnDate: '2026-02-12',
|
|
177
|
+
latitude: 40.7128,
|
|
178
|
+
longitude: -74.006,
|
|
179
|
+
timezone: -5,
|
|
180
|
+
houseSystem: 'placidus',
|
|
181
|
+
},
|
|
135
182
|
});
|
|
136
183
|
|
|
137
|
-
//
|
|
138
|
-
const { data } = await roxy.astrology.
|
|
139
|
-
body: {
|
|
184
|
+
// Composite Chart - Midpoint relationship chart with interpretations
|
|
185
|
+
const { data } = await roxy.astrology.generateCompositeChart({
|
|
186
|
+
body: {
|
|
187
|
+
person1: {
|
|
188
|
+
date: '1990-07-15',
|
|
189
|
+
time: '14:30:00',
|
|
190
|
+
latitude: 40.7128,
|
|
191
|
+
longitude: -74.006,
|
|
192
|
+
timezone: -5,
|
|
193
|
+
},
|
|
194
|
+
person2: {
|
|
195
|
+
date: '1990-07-15',
|
|
196
|
+
time: '14:30:00',
|
|
197
|
+
latitude: 40.7128,
|
|
198
|
+
longitude: -74.006,
|
|
199
|
+
timezone: -5,
|
|
200
|
+
},
|
|
201
|
+
houseSystem: 'placidus',
|
|
202
|
+
},
|
|
140
203
|
});
|
|
141
|
-
```
|
|
142
204
|
|
|
143
|
-
|
|
205
|
+
// Compatibility Score. Relationship compatibility analysis with category breakdown
|
|
206
|
+
const { data } = await roxy.astrology.calculateCompatibility({
|
|
207
|
+
body: {
|
|
208
|
+
person1: {
|
|
209
|
+
date: '1990-07-15',
|
|
210
|
+
time: '14:30:00',
|
|
211
|
+
latitude: 40.7128,
|
|
212
|
+
longitude: -74.006,
|
|
213
|
+
timezone: -5,
|
|
214
|
+
},
|
|
215
|
+
person2: {
|
|
216
|
+
date: '1990-07-15',
|
|
217
|
+
time: '14:30:00',
|
|
218
|
+
latitude: 40.7128,
|
|
219
|
+
longitude: -74.006,
|
|
220
|
+
timezone: -5,
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
});
|
|
144
224
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
const { data } = await roxy.astrology.getCurrentMoonPhase();
|
|
148
|
-
// Returns: { date, phase, illumination, age, sign, degree, distance, meaning }
|
|
225
|
+
// Daily horoscope by zodiac sign - Transit-based forecast with house activations
|
|
226
|
+
const { data } = await roxy.astrology.getDailyHoroscope({ path: { sign: 'aries' }, query: { date: '2026-04-03' } });
|
|
149
227
|
|
|
150
|
-
//
|
|
151
|
-
const { data } = await roxy.astrology.
|
|
228
|
+
// Weekly horoscope by zodiac sign - 7-day transit forecast
|
|
229
|
+
const { data } = await roxy.astrology.getWeeklyHoroscope({ path: { sign: 'aries' } });
|
|
152
230
|
|
|
153
|
-
// Monthly
|
|
154
|
-
const { data } = await roxy.astrology.
|
|
231
|
+
// Monthly horoscope by zodiac sign - 30-day transit forecast with key dates
|
|
232
|
+
const { data } = await roxy.astrology.getMonthlyHoroscope({ path: { sign: 'aries' } });
|
|
233
|
+
|
|
234
|
+
// Planetary Return Chart - Saturn return, Jupiter return, and inner planet cycles
|
|
235
|
+
const { data } = await roxy.astrology.generatePlanetaryReturn({
|
|
236
|
+
body: {
|
|
237
|
+
birthDate: '1990-07-15',
|
|
238
|
+
birthTime: '14:30:00',
|
|
239
|
+
planet: 'Jupiter',
|
|
240
|
+
approximateDate: '2026-08-15',
|
|
241
|
+
latitude: 40.7128,
|
|
242
|
+
longitude: -74.006,
|
|
243
|
+
timezone: -5,
|
|
244
|
+
houseSystem: 'placidus',
|
|
245
|
+
},
|
|
246
|
+
});
|
|
155
247
|
```
|
|
156
248
|
|
|
157
249
|
---
|
|
158
250
|
|
|
159
251
|
## Vedic Astrology — `roxy.vedicAstrology`
|
|
160
252
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
### Birth Charts
|
|
253
|
+
Production-grade Vedic (Jyotish) and KP astrology API + remote MCP for AI agents and developers
|
|
164
254
|
|
|
165
255
|
```typescript
|
|
166
|
-
//
|
|
256
|
+
// Get birth chart (D1 Rashi chart) - Kundli Calculator API
|
|
167
257
|
const { data } = await roxy.vedicAstrology.generateBirthChart({
|
|
168
|
-
body: {
|
|
258
|
+
body: {
|
|
259
|
+
date: '1990-07-04',
|
|
260
|
+
time: '10:12:00',
|
|
261
|
+
latitude: 28.6139,
|
|
262
|
+
longitude: 77.209,
|
|
263
|
+
timezone: 5.5,
|
|
264
|
+
},
|
|
169
265
|
});
|
|
170
266
|
|
|
171
|
-
// Navamsa (D9
|
|
267
|
+
// Get Navamsa chart (D9) - Marriage Compatibility Calculator
|
|
172
268
|
const { data } = await roxy.vedicAstrology.generateNavamsa({
|
|
173
|
-
body: {
|
|
269
|
+
body: {
|
|
270
|
+
date: '1990-07-04',
|
|
271
|
+
time: '10:12:00',
|
|
272
|
+
latitude: 28.6139,
|
|
273
|
+
longitude: 77.209,
|
|
274
|
+
timezone: 5.5,
|
|
275
|
+
},
|
|
174
276
|
});
|
|
175
277
|
|
|
176
|
-
//
|
|
278
|
+
// Get divisional chart (Varga) - D2 to D60 Calculator
|
|
177
279
|
const { data } = await roxy.vedicAstrology.generateDivisionalChart({
|
|
178
|
-
body: {
|
|
280
|
+
body: {
|
|
281
|
+
date: '1990-07-04',
|
|
282
|
+
time: '10:12:00',
|
|
283
|
+
latitude: 28.6139,
|
|
284
|
+
longitude: 77.209,
|
|
285
|
+
timezone: 5.5,
|
|
286
|
+
division: 10,
|
|
287
|
+
},
|
|
179
288
|
});
|
|
180
|
-
```
|
|
181
289
|
|
|
182
|
-
|
|
290
|
+
// Calculate compatibility score - Gun Milan API (Ashtakoot Matching)
|
|
291
|
+
const { data } = await roxy.vedicAstrology.calculateGunMilan({
|
|
292
|
+
body: {
|
|
293
|
+
person1: {
|
|
294
|
+
date: '1990-07-04',
|
|
295
|
+
time: '10:12:00',
|
|
296
|
+
latitude: 28.6139,
|
|
297
|
+
longitude: 77.209,
|
|
298
|
+
timezone: 5.5,
|
|
299
|
+
},
|
|
300
|
+
person2: {
|
|
301
|
+
date: '1990-07-04',
|
|
302
|
+
time: '10:12:00',
|
|
303
|
+
latitude: 28.6139,
|
|
304
|
+
longitude: 77.209,
|
|
305
|
+
timezone: 5.5,
|
|
306
|
+
},
|
|
307
|
+
},
|
|
308
|
+
});
|
|
183
309
|
|
|
184
|
-
|
|
185
|
-
// Sidereal positions (9 planets + Lagna)
|
|
310
|
+
// Get planetary positions - Graha Positions API
|
|
186
311
|
const { data } = await roxy.vedicAstrology.getPlanetPositions({
|
|
187
|
-
body: {
|
|
312
|
+
body: {
|
|
313
|
+
date: '1990-07-04',
|
|
314
|
+
time: '10:12:00',
|
|
315
|
+
latitude: 28.6139,
|
|
316
|
+
longitude: 77.209,
|
|
317
|
+
timezone: 5.5,
|
|
318
|
+
},
|
|
188
319
|
});
|
|
189
320
|
|
|
190
|
-
// Monthly
|
|
321
|
+
// Monthly Ephemeris - Daily sidereal planetary positions for a month
|
|
191
322
|
const { data } = await roxy.vedicAstrology.getMonthlyEphemeris({
|
|
192
|
-
body: {
|
|
323
|
+
body: { year: 2026, month: 2, coordinateSystem: 'sidereal' },
|
|
193
324
|
});
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
### Dasha System
|
|
197
325
|
|
|
198
|
-
|
|
199
|
-
// Current Mahadasha/Antardasha/Pratyantardasha
|
|
326
|
+
// Get current Mahadasha, Antardasha, Pratyantardasha - Dasha Calculator API
|
|
200
327
|
const { data } = await roxy.vedicAstrology.getCurrentDasha({
|
|
201
|
-
body: {
|
|
328
|
+
body: {
|
|
329
|
+
date: '1990-07-04',
|
|
330
|
+
time: '10:12:00',
|
|
331
|
+
latitude: 28.6139,
|
|
332
|
+
longitude: 77.209,
|
|
333
|
+
timezone: 5.5,
|
|
334
|
+
},
|
|
202
335
|
});
|
|
203
336
|
|
|
204
|
-
//
|
|
337
|
+
// Get all 9 Mahadasha periods (120-year cycle)
|
|
205
338
|
const { data } = await roxy.vedicAstrology.getMajorDashas({
|
|
206
|
-
body: {
|
|
339
|
+
body: {
|
|
340
|
+
date: '1990-07-04',
|
|
341
|
+
time: '10:12:00',
|
|
342
|
+
latitude: 28.6139,
|
|
343
|
+
longitude: 77.209,
|
|
344
|
+
timezone: 5.5,
|
|
345
|
+
},
|
|
207
346
|
});
|
|
208
347
|
|
|
209
|
-
//
|
|
348
|
+
// Get all Antardashas (sub-periods) for a specific Mahadasha
|
|
210
349
|
const { data } = await roxy.vedicAstrology.getSubDashas({
|
|
211
|
-
path: { mahadasha: '
|
|
212
|
-
body: {
|
|
350
|
+
path: { mahadasha: 'Jupiter' },
|
|
351
|
+
body: {
|
|
352
|
+
date: '1990-07-04',
|
|
353
|
+
time: '10:12:00',
|
|
354
|
+
latitude: 28.6139,
|
|
355
|
+
longitude: 77.209,
|
|
356
|
+
timezone: 5.5,
|
|
357
|
+
},
|
|
213
358
|
});
|
|
214
|
-
```
|
|
215
359
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
```typescript
|
|
219
|
-
// Basic (Tithi, Nakshatra, Yoga, Karana)
|
|
360
|
+
// Get basic Panchang - Tithi Nakshatra Yoga Karana Calculator
|
|
220
361
|
const { data } = await roxy.vedicAstrology.getBasicPanchang({
|
|
221
|
-
body: {
|
|
362
|
+
body: {
|
|
363
|
+
date: '2025-12-17',
|
|
364
|
+
time: '12:00:00',
|
|
365
|
+
latitude: 28.6139,
|
|
366
|
+
longitude: 77.209,
|
|
367
|
+
timezone: 5.5,
|
|
368
|
+
},
|
|
222
369
|
});
|
|
223
370
|
|
|
224
|
-
//
|
|
371
|
+
// Get detailed Panchang with Rahu Kaal, Yamaganda, Gulika
|
|
225
372
|
const { data } = await roxy.vedicAstrology.getDetailedPanchang({
|
|
226
|
-
body: {
|
|
373
|
+
body: {
|
|
374
|
+
date: '2026-02-03',
|
|
375
|
+
latitude: 28.6139,
|
|
376
|
+
longitude: 77.209,
|
|
377
|
+
timezone: 5.5,
|
|
378
|
+
},
|
|
227
379
|
});
|
|
228
380
|
|
|
229
|
-
// Choghadiya
|
|
381
|
+
// Get Choghadiya - 8 Muhurta divisions of day and night
|
|
230
382
|
const { data } = await roxy.vedicAstrology.getChoghadiya({
|
|
231
|
-
body: {
|
|
383
|
+
body: {
|
|
384
|
+
date: '2026-02-03',
|
|
385
|
+
latitude: 17.385044,
|
|
386
|
+
longitude: 78.486671,
|
|
387
|
+
timezone: 5.5,
|
|
388
|
+
},
|
|
232
389
|
});
|
|
233
390
|
|
|
234
|
-
// Hora (
|
|
391
|
+
// Get Hora - 24 Planetary Hours (12 day + 12 night)
|
|
235
392
|
const { data } = await roxy.vedicAstrology.getHora({
|
|
236
|
-
body: {
|
|
393
|
+
body: {
|
|
394
|
+
date: '2026-02-03',
|
|
395
|
+
latitude: 17.385044,
|
|
396
|
+
longitude: 78.486671,
|
|
397
|
+
timezone: 5.5,
|
|
398
|
+
},
|
|
237
399
|
});
|
|
238
|
-
```
|
|
239
400
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
```typescript
|
|
243
|
-
// Manglik dosha
|
|
401
|
+
// Check Manglik Dosha - Mangal Dosha Calculator API
|
|
244
402
|
const { data } = await roxy.vedicAstrology.checkManglikDosha({
|
|
245
|
-
body: {
|
|
403
|
+
body: {
|
|
404
|
+
date: '1990-07-04',
|
|
405
|
+
time: '10:12:00',
|
|
406
|
+
latitude: 28.6139,
|
|
407
|
+
longitude: 77.209,
|
|
408
|
+
timezone: 5.5,
|
|
409
|
+
},
|
|
246
410
|
});
|
|
247
411
|
|
|
248
|
-
// Kalsarpa
|
|
412
|
+
// Check Kalsarpa Dosha - Kalsarpa Yoga Calculator API
|
|
249
413
|
const { data } = await roxy.vedicAstrology.checkKalsarpaDosha({
|
|
250
|
-
body: {
|
|
414
|
+
body: {
|
|
415
|
+
date: '1990-07-04',
|
|
416
|
+
time: '10:12:00',
|
|
417
|
+
latitude: 28.6139,
|
|
418
|
+
longitude: 77.209,
|
|
419
|
+
timezone: 5.5,
|
|
420
|
+
},
|
|
251
421
|
});
|
|
252
422
|
|
|
253
|
-
// Sadhesati (Saturn
|
|
423
|
+
// Check Sadhesati - Sade Sati Calculator API (Saturn Transit)
|
|
254
424
|
const { data } = await roxy.vedicAstrology.checkSadhesati({
|
|
255
|
-
body: {
|
|
425
|
+
body: {
|
|
426
|
+
date: '1990-07-04',
|
|
427
|
+
time: '10:12:00',
|
|
428
|
+
latitude: 28.6139,
|
|
429
|
+
longitude: 77.209,
|
|
430
|
+
timezone: 5.5,
|
|
431
|
+
},
|
|
256
432
|
});
|
|
257
|
-
```
|
|
258
433
|
|
|
259
|
-
|
|
434
|
+
// List all planetary yogas - 300+ Vedic Yoga Glossary
|
|
435
|
+
const { data } = await roxy.vedicAstrology.listYogas();
|
|
260
436
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
437
|
+
// Get yoga details by ID - Vedic Yoga Glossary Entry
|
|
438
|
+
const { data } = await roxy.vedicAstrology.getYoga({ path: { id: 'gajakesari' } });
|
|
439
|
+
|
|
440
|
+
// Detect classical Vedic yogas in a birth chart
|
|
441
|
+
const { data } = await roxy.vedicAstrology.detectYogas({
|
|
264
442
|
body: {
|
|
265
|
-
|
|
266
|
-
|
|
443
|
+
date: '1990-07-04',
|
|
444
|
+
time: '10:12:00',
|
|
445
|
+
latitude: 28.6139,
|
|
446
|
+
longitude: 77.209,
|
|
447
|
+
timezone: 5.5,
|
|
267
448
|
},
|
|
268
449
|
});
|
|
269
|
-
```
|
|
270
450
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
```typescript
|
|
274
|
-
// KP Ayanamsa value
|
|
275
|
-
const { data } = await roxy.vedicAstrology.getKpAyanamsa();
|
|
451
|
+
// Get KP-Newcomb ayanamsa - Dynamic daily calculation
|
|
452
|
+
const { data } = await roxy.vedicAstrology.getKpAyanamsa({ query: { date: '2025-12-26' } });
|
|
276
453
|
|
|
277
|
-
// KP
|
|
454
|
+
// Get KP planetary positions with sub-lords
|
|
278
455
|
const { data } = await roxy.vedicAstrology.getKpPlanets({
|
|
279
|
-
body: {
|
|
456
|
+
body: {
|
|
457
|
+
date: '1990-07-04',
|
|
458
|
+
time: '10:12:00',
|
|
459
|
+
latitude: 28.6139,
|
|
460
|
+
longitude: 77.209,
|
|
461
|
+
timezone: 5.5,
|
|
462
|
+
ayanamsa: 'kp-newcomb',
|
|
463
|
+
ayanamsaValue: 24,
|
|
464
|
+
nodeType: 'mean',
|
|
465
|
+
},
|
|
280
466
|
});
|
|
281
467
|
|
|
282
|
-
// KP house cusps with
|
|
468
|
+
// Get KP Placidus house cusps with sub-lords
|
|
283
469
|
const { data } = await roxy.vedicAstrology.getKpCusps({
|
|
284
|
-
body: {
|
|
470
|
+
body: {
|
|
471
|
+
date: '1990-07-04',
|
|
472
|
+
time: '10:12:00',
|
|
473
|
+
latitude: 28.6139,
|
|
474
|
+
longitude: 77.209,
|
|
475
|
+
timezone: 5.5,
|
|
476
|
+
ayanamsa: 'kp-newcomb',
|
|
477
|
+
ayanamsaValue: 24,
|
|
478
|
+
},
|
|
285
479
|
});
|
|
286
480
|
|
|
287
|
-
//
|
|
481
|
+
// Generate complete KP birth chart
|
|
288
482
|
const { data } = await roxy.vedicAstrology.generateKpChart({
|
|
289
|
-
body: {
|
|
483
|
+
body: {
|
|
484
|
+
date: '1990-07-04',
|
|
485
|
+
time: '10:12:00',
|
|
486
|
+
latitude: 28.6139,
|
|
487
|
+
longitude: 77.209,
|
|
488
|
+
timezone: 5.5,
|
|
489
|
+
ayanamsa: 'kp-newcomb',
|
|
490
|
+
ayanamsaValue: 24,
|
|
491
|
+
nodeType: 'mean',
|
|
492
|
+
},
|
|
290
493
|
});
|
|
291
494
|
|
|
292
|
-
// KP ruling planets
|
|
495
|
+
// Get KP ruling planets with optional significators
|
|
293
496
|
const { data } = await roxy.vedicAstrology.getKpRulingPlanets({
|
|
294
|
-
body: {
|
|
497
|
+
body: {
|
|
498
|
+
latitude: 28.6139,
|
|
499
|
+
longitude: 77.209,
|
|
500
|
+
timezone: 5.5,
|
|
501
|
+
datetime: '2025-01-15T10:30:00Z',
|
|
502
|
+
birthDate: '1990-07-04',
|
|
503
|
+
birthTime: '10:12:00',
|
|
504
|
+
nodeType: 'mean',
|
|
505
|
+
},
|
|
295
506
|
});
|
|
296
507
|
|
|
297
|
-
// KP ruling planets at intervals
|
|
508
|
+
// Get KP ruling planets with significators at intervals
|
|
298
509
|
const { data } = await roxy.vedicAstrology.getKpRulingInterval({
|
|
299
|
-
body: {
|
|
510
|
+
body: {
|
|
511
|
+
startDatetime: '2026-02-03T00:00:00Z',
|
|
512
|
+
endDatetime: '2026-02-03T01:00:00Z',
|
|
513
|
+
intervalMinutes: 5,
|
|
514
|
+
latitude: 17.385044,
|
|
515
|
+
longitude: 78.486671,
|
|
516
|
+
timezone: 5.5,
|
|
517
|
+
ayanamsa: 'kp-newcomb',
|
|
518
|
+
nodeType: 'mean',
|
|
519
|
+
},
|
|
300
520
|
});
|
|
301
521
|
|
|
302
|
-
// KP sublord
|
|
522
|
+
// Find KP sublord changes
|
|
303
523
|
const { data } = await roxy.vedicAstrology.getKpSublordChanges({
|
|
304
|
-
body: {
|
|
524
|
+
body: {
|
|
525
|
+
planet: 'Moon',
|
|
526
|
+
startDate: '2025-01-01',
|
|
527
|
+
endDate: '2025-01-31',
|
|
528
|
+
timezone: 5.5,
|
|
529
|
+
ayanamsa: 'kp-newcomb',
|
|
530
|
+
nodeType: 'mean',
|
|
531
|
+
},
|
|
305
532
|
});
|
|
306
533
|
|
|
307
|
-
// KP rasi
|
|
534
|
+
// Find KP rasi ingress times
|
|
308
535
|
const { data } = await roxy.vedicAstrology.getKpRasiChanges({
|
|
309
|
-
body: {
|
|
536
|
+
body: {
|
|
537
|
+
planet: 'Sun',
|
|
538
|
+
startDate: '2025-01-01',
|
|
539
|
+
endDate: '2025-12-31',
|
|
540
|
+
timezone: 5.5,
|
|
541
|
+
ayanamsa: 'kp-newcomb',
|
|
542
|
+
nodeType: 'mean',
|
|
543
|
+
},
|
|
310
544
|
});
|
|
311
545
|
|
|
312
|
-
// KP planets at time intervals
|
|
546
|
+
// Get KP planets at time intervals
|
|
313
547
|
const { data } = await roxy.vedicAstrology.getKpPlanetsInterval({
|
|
314
|
-
body: {
|
|
548
|
+
body: {
|
|
549
|
+
startDatetime: '2025-01-15T00:00:00Z',
|
|
550
|
+
endDatetime: '2025-01-15T23:59:00Z',
|
|
551
|
+
intervalMinutes: 60,
|
|
552
|
+
latitude: 28.6139,
|
|
553
|
+
longitude: 77.209,
|
|
554
|
+
timezone: 5.5,
|
|
555
|
+
ayanamsa: 'kp-newcomb',
|
|
556
|
+
nodeType: 'mean',
|
|
557
|
+
},
|
|
315
558
|
});
|
|
316
|
-
```
|
|
317
|
-
|
|
318
|
-
### Aspects, Transits, Parallels
|
|
319
559
|
|
|
320
|
-
|
|
321
|
-
// Planetary aspects (Drishti)
|
|
560
|
+
// Get planetary aspects (Drishti) - Mutual aspects between all planets
|
|
322
561
|
const { data } = await roxy.vedicAstrology.calculateDrishti({
|
|
323
|
-
body: {
|
|
562
|
+
body: {
|
|
563
|
+
date: '2026-02-03',
|
|
564
|
+
time: '12:00:00',
|
|
565
|
+
latitude: 17.385044,
|
|
566
|
+
longitude: 78.486671,
|
|
567
|
+
timezone: 5.5,
|
|
568
|
+
coordinateSystem: 'sidereal',
|
|
569
|
+
},
|
|
324
570
|
});
|
|
325
571
|
|
|
326
|
-
// Monthly aspect events
|
|
572
|
+
// Monthly Planetary Aspects - Major and minor aspect events for a month
|
|
327
573
|
const { data } = await roxy.vedicAstrology.getMonthlyAspects({
|
|
328
|
-
body: {
|
|
574
|
+
body: {
|
|
575
|
+
year: 2026,
|
|
576
|
+
month: 2,
|
|
577
|
+
timezone: 5.5,
|
|
578
|
+
coordinateSystem: 'sidereal',
|
|
579
|
+
},
|
|
329
580
|
});
|
|
330
581
|
|
|
331
|
-
// Lunar
|
|
582
|
+
// Monthly Lunar Aspects - Moon aspect events with all planets for a month
|
|
332
583
|
const { data } = await roxy.vedicAstrology.getLunarAspects({
|
|
333
|
-
body: {
|
|
584
|
+
body: {
|
|
585
|
+
year: 2026,
|
|
586
|
+
month: 2,
|
|
587
|
+
timezone: 5.5,
|
|
588
|
+
coordinateSystem: 'sidereal',
|
|
589
|
+
},
|
|
334
590
|
});
|
|
335
591
|
|
|
336
|
-
// Transit (Gochar)
|
|
592
|
+
// Transit Analysis - Compare current planets to natal chart (Gochar)
|
|
337
593
|
const { data } = await roxy.vedicAstrology.calculateTransit({
|
|
338
|
-
body: {
|
|
594
|
+
body: {
|
|
595
|
+
birthDate: '1990-07-04',
|
|
596
|
+
birthTime: '10:12:00',
|
|
597
|
+
transitDate: '2026-02-03',
|
|
598
|
+
transitTime: '12:00:00',
|
|
599
|
+
latitude: 17.385044,
|
|
600
|
+
longitude: 78.486671,
|
|
601
|
+
timezone: 5.5,
|
|
602
|
+
coordinateSystem: 'sidereal',
|
|
603
|
+
},
|
|
339
604
|
});
|
|
340
605
|
|
|
341
|
-
// Monthly sign changes
|
|
606
|
+
// Monthly Transit - Planetary sign changes for an entire month
|
|
342
607
|
const { data } = await roxy.vedicAstrology.getMonthlyTransits({
|
|
343
|
-
body: {
|
|
608
|
+
body: {
|
|
609
|
+
year: 2026,
|
|
610
|
+
month: 2,
|
|
611
|
+
timezone: 5.5,
|
|
612
|
+
coordinateSystem: 'sidereal',
|
|
613
|
+
},
|
|
344
614
|
});
|
|
345
615
|
|
|
346
|
-
// Declination
|
|
616
|
+
// Declination Parallels - Planets at same or opposite declination
|
|
347
617
|
const { data } = await roxy.vedicAstrology.calculateParallels({
|
|
348
|
-
body: {
|
|
618
|
+
body: {
|
|
619
|
+
date: '2026-02-03',
|
|
620
|
+
time: '12:00:00',
|
|
621
|
+
latitude: 17.385044,
|
|
622
|
+
longitude: 78.486671,
|
|
623
|
+
timezone: 5.5,
|
|
624
|
+
orb: 1.5,
|
|
625
|
+
},
|
|
349
626
|
});
|
|
350
627
|
|
|
351
|
-
// Monthly
|
|
352
|
-
const { data } = await roxy.vedicAstrology.getMonthlyParallels({
|
|
353
|
-
body: { date: '2026-03-01', time: '00:00:00', latitude: 28.6139, longitude: 77.209 },
|
|
354
|
-
});
|
|
628
|
+
// Monthly Declination Parallels - Parallel and contraparallel events for a month
|
|
629
|
+
const { data } = await roxy.vedicAstrology.getMonthlyParallels({ body: { year: 2026, month: 2, timezone: 5.5 } });
|
|
355
630
|
|
|
356
|
-
// Ecliptic
|
|
631
|
+
// Ecliptic Crossings - When planets cross the ecliptic plane
|
|
357
632
|
const { data } = await roxy.vedicAstrology.getEclipticCrossings({
|
|
358
|
-
body: {
|
|
633
|
+
body: { year: 2026, timezone: 5.5, coordinateSystem: 'sidereal' },
|
|
359
634
|
});
|
|
360
|
-
```
|
|
361
|
-
|
|
362
|
-
### Reference Data
|
|
363
635
|
|
|
364
|
-
|
|
365
|
-
// All 12 rashis (Vedic signs)
|
|
636
|
+
// List all 12 Rashis - Vedic Zodiac Signs Reference
|
|
366
637
|
const { data } = await roxy.vedicAstrology.listRashis();
|
|
367
|
-
const { data } = await roxy.vedicAstrology.getRashi({ path: { id: 1 } });
|
|
368
638
|
|
|
369
|
-
//
|
|
370
|
-
const { data } = await roxy.vedicAstrology.
|
|
371
|
-
const { data } = await roxy.vedicAstrology.getNakshatra({ path: { id: 1 } });
|
|
639
|
+
// Get Rashi by ID - Vedic Zodiac Sign Detail
|
|
640
|
+
const { data } = await roxy.vedicAstrology.getRashi({ path: { id: 'mesha' } });
|
|
372
641
|
|
|
373
|
-
//
|
|
374
|
-
const { data } = await roxy.vedicAstrology.
|
|
375
|
-
const { data } = await roxy.vedicAstrology.getYoga({ path: { id: 1 } });
|
|
376
|
-
```
|
|
642
|
+
// List all 27 Nakshatras - Lunar Mansions Reference
|
|
643
|
+
const { data } = await roxy.vedicAstrology.listNakshatras();
|
|
377
644
|
|
|
378
|
-
|
|
645
|
+
// Get Nakshatra by ID - Lunar Mansion Detail
|
|
646
|
+
const { data } = await roxy.vedicAstrology.getNakshatra({ path: { id: 'ashwini' } });
|
|
379
647
|
|
|
380
|
-
|
|
381
|
-
// Upagraha (sub-planet) positions
|
|
648
|
+
// Get upagraha (sub-planet) positions - Upagraha Calculator API
|
|
382
649
|
const { data } = await roxy.vedicAstrology.getUpagrahaPositions({
|
|
383
|
-
body: {
|
|
650
|
+
body: {
|
|
651
|
+
date: '1990-07-04',
|
|
652
|
+
time: '10:12:00',
|
|
653
|
+
latitude: 28.6139,
|
|
654
|
+
longitude: 77.209,
|
|
655
|
+
timezone: 5.5,
|
|
656
|
+
},
|
|
384
657
|
});
|
|
385
658
|
|
|
386
|
-
// Ashtakavarga (
|
|
659
|
+
// Get Ashtakavarga (planetary strength) analysis - Ashtakavarga Calculator API
|
|
387
660
|
const { data } = await roxy.vedicAstrology.calculateAshtakavarga({
|
|
388
|
-
body: {
|
|
661
|
+
body: {
|
|
662
|
+
date: '1990-07-04',
|
|
663
|
+
time: '10:12:00',
|
|
664
|
+
latitude: 28.6139,
|
|
665
|
+
longitude: 77.209,
|
|
666
|
+
timezone: 5.5,
|
|
667
|
+
},
|
|
389
668
|
});
|
|
390
669
|
|
|
391
|
-
// Shadbala (
|
|
670
|
+
// Get Shadbala (six-fold planetary strength) analysis - Shadbala Calculator API
|
|
392
671
|
const { data } = await roxy.vedicAstrology.calculateShadbala({
|
|
393
|
-
body: {
|
|
672
|
+
body: {
|
|
673
|
+
date: '1990-07-04',
|
|
674
|
+
time: '10:12:00',
|
|
675
|
+
latitude: 28.6139,
|
|
676
|
+
longitude: 77.209,
|
|
677
|
+
timezone: 5.5,
|
|
678
|
+
},
|
|
394
679
|
});
|
|
395
680
|
```
|
|
396
681
|
|
|
397
682
|
---
|
|
398
683
|
|
|
399
|
-
##
|
|
684
|
+
## Numerology — `roxy.numerology`
|
|
400
685
|
|
|
401
|
-
|
|
686
|
+
Production-ready Pythagorean numerology API + hosted MCP for AI agents and developers
|
|
402
687
|
|
|
403
688
|
```typescript
|
|
404
|
-
//
|
|
405
|
-
const { data } = await roxy.
|
|
689
|
+
// Calculate Life Path number - Most important numerology calculation
|
|
690
|
+
const { data } = await roxy.numerology.calculateLifePath({ body: { year: 1990, month: 7, day: 15 } });
|
|
406
691
|
|
|
407
|
-
//
|
|
408
|
-
const { data } = await roxy.
|
|
692
|
+
// Calculate Expression number - Natural talents and life goals
|
|
693
|
+
const { data } = await roxy.numerology.calculateExpression({ body: { fullName: 'John William Smith' } });
|
|
409
694
|
|
|
410
|
-
//
|
|
411
|
-
const { data } = await roxy.
|
|
695
|
+
// Calculate Bridge Numbers - Harmonize different aspects of personality
|
|
696
|
+
const { data } = await roxy.numerology.calculateBridgeNumbers({
|
|
697
|
+
body: {
|
|
698
|
+
fullName: 'John William Smith',
|
|
699
|
+
year: 1990,
|
|
700
|
+
month: 7,
|
|
701
|
+
day: 15,
|
|
702
|
+
},
|
|
703
|
+
});
|
|
412
704
|
|
|
413
|
-
//
|
|
414
|
-
const { data } = await roxy.
|
|
705
|
+
// Calculate Soul Urge number - Inner motivations and desires
|
|
706
|
+
const { data } = await roxy.numerology.calculateSoulUrge({ body: { fullName: 'John William Smith' } });
|
|
415
707
|
|
|
416
|
-
//
|
|
417
|
-
const { data } = await roxy.
|
|
708
|
+
// Calculate Personality number - How others perceive you
|
|
709
|
+
const { data } = await roxy.numerology.calculatePersonality({ body: { fullName: 'John William Smith' } });
|
|
418
710
|
|
|
419
|
-
//
|
|
420
|
-
const { data } = await roxy.
|
|
711
|
+
// Calculate Birth Day number - Special talents from day of birth
|
|
712
|
+
const { data } = await roxy.numerology.calculateBirthDay({ body: { day: 23 } });
|
|
421
713
|
|
|
422
|
-
//
|
|
423
|
-
const { data } = await roxy.
|
|
714
|
+
// Calculate Maturity number - Who you become in later life
|
|
715
|
+
const { data } = await roxy.numerology.calculateMaturity({
|
|
716
|
+
body: {
|
|
717
|
+
lifePath: 5,
|
|
718
|
+
expression: 7,
|
|
719
|
+
fullName: 'John William Smith',
|
|
720
|
+
year: 1990,
|
|
721
|
+
month: 7,
|
|
722
|
+
day: 15,
|
|
723
|
+
},
|
|
724
|
+
});
|
|
424
725
|
|
|
425
|
-
//
|
|
426
|
-
const { data } = await roxy.
|
|
726
|
+
// Analyze Karmic Lessons - Life lessons from missing numbers
|
|
727
|
+
const { data } = await roxy.numerology.analyzeKarmicLessons({ body: { fullName: 'John William Smith' } });
|
|
427
728
|
|
|
428
|
-
//
|
|
429
|
-
const { data } = await roxy.
|
|
729
|
+
// Detect Karmic Debt numbers - Past life challenges (13, 14, 16, 19)
|
|
730
|
+
const { data } = await roxy.numerology.checkKarmicDebt({
|
|
731
|
+
body: {
|
|
732
|
+
year: 1990,
|
|
733
|
+
month: 7,
|
|
734
|
+
day: 15,
|
|
735
|
+
fullName: 'John William Smith',
|
|
736
|
+
},
|
|
737
|
+
});
|
|
430
738
|
|
|
431
|
-
//
|
|
432
|
-
const { data } = await roxy.
|
|
433
|
-
|
|
739
|
+
// Calculate Personal Day - Daily personalized numerology forecast
|
|
740
|
+
const { data } = await roxy.numerology.calculatePersonalDay({ body: { month: 7, day: 18, targetDate: '2026-04-04' } });
|
|
741
|
+
|
|
742
|
+
// Calculate Personal Month - Monthly numerology forecast
|
|
743
|
+
const { data } = await roxy.numerology.calculatePersonalMonth({ body: { month: 7, day: 18, year: 2026, targetMonth: 4 } });
|
|
744
|
+
|
|
745
|
+
// Calculate Personal Year - Annual cycle and forecast for current year
|
|
746
|
+
const { data } = await roxy.numerology.calculatePersonalYear({ body: { month: 7, day: 15, year: 2025 } });
|
|
747
|
+
|
|
748
|
+
// Calculate Compatibility - Relationship dynamics between two people
|
|
749
|
+
const { data } = await roxy.numerology.calculateNumCompatibility({
|
|
750
|
+
body: {
|
|
751
|
+
person1: {
|
|
752
|
+
lifePath: 5,
|
|
753
|
+
expression: 7,
|
|
754
|
+
soulUrge: 6,
|
|
755
|
+
fullName: 'John William Smith',
|
|
756
|
+
year: 1990,
|
|
757
|
+
month: 7,
|
|
758
|
+
day: 15,
|
|
759
|
+
},
|
|
760
|
+
person2: {
|
|
761
|
+
lifePath: 3,
|
|
762
|
+
expression: 9,
|
|
763
|
+
soulUrge: 2,
|
|
764
|
+
fullName: 'Jane Marie Doe',
|
|
765
|
+
year: 1992,
|
|
766
|
+
month: 3,
|
|
767
|
+
day: 22,
|
|
768
|
+
},
|
|
769
|
+
},
|
|
434
770
|
});
|
|
771
|
+
|
|
772
|
+
// Generate Complete Numerology Chart - Full profile analysis
|
|
773
|
+
const { data } = await roxy.numerology.generateNumerologyChart({
|
|
774
|
+
body: {
|
|
775
|
+
fullName: 'John William Smith',
|
|
776
|
+
year: 1990,
|
|
777
|
+
month: 7,
|
|
778
|
+
day: 15,
|
|
779
|
+
currentYear: 2025,
|
|
780
|
+
},
|
|
781
|
+
});
|
|
782
|
+
|
|
783
|
+
// Get Number Meaning - Interpretation for any number 1-9, 11, 22, 33
|
|
784
|
+
const { data } = await roxy.numerology.getNumberMeaning({ path: { number: '5' } });
|
|
785
|
+
|
|
786
|
+
// Get daily numerology number - Number of the Day with interpretation
|
|
787
|
+
const { data } = await roxy.numerology.getDailyNumber({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
435
788
|
```
|
|
436
789
|
|
|
437
790
|
---
|
|
438
791
|
|
|
439
|
-
##
|
|
792
|
+
## Tarot — `roxy.tarot`
|
|
440
793
|
|
|
441
|
-
|
|
794
|
+
Production-ready tarot card reading API + hosted MCP for AI agents and developers
|
|
442
795
|
|
|
443
796
|
```typescript
|
|
444
|
-
//
|
|
445
|
-
const { data } = await roxy.
|
|
446
|
-
|
|
797
|
+
// List all 78 tarot cards
|
|
798
|
+
const { data } = await roxy.tarot.listCards({
|
|
799
|
+
query: {
|
|
800
|
+
limit: 20,
|
|
801
|
+
offset: 0,
|
|
802
|
+
arcana: 'major',
|
|
803
|
+
suit: 'cups',
|
|
804
|
+
number: 1,
|
|
805
|
+
},
|
|
447
806
|
});
|
|
448
|
-
// Returns: { number, calculation, type, hasKarmicDebt, meaning }
|
|
449
807
|
|
|
450
|
-
//
|
|
451
|
-
const { data } = await roxy.
|
|
808
|
+
// Get detailed tarot card information
|
|
809
|
+
const { data } = await roxy.tarot.getCard({ path: { id: 'fool' } });
|
|
452
810
|
|
|
453
|
-
//
|
|
454
|
-
const { data } = await roxy.
|
|
811
|
+
// Draw random tarot cards with reproducible results
|
|
812
|
+
const { data } = await roxy.tarot.drawCards({
|
|
813
|
+
body: {
|
|
814
|
+
count: 3,
|
|
815
|
+
seed: 'user123-2025-12-27',
|
|
816
|
+
allowReversals: true,
|
|
817
|
+
allowDuplicates: false,
|
|
818
|
+
},
|
|
819
|
+
});
|
|
455
820
|
|
|
456
|
-
//
|
|
457
|
-
const { data } = await roxy.
|
|
821
|
+
// Get daily tarot card reading
|
|
822
|
+
const { data } = await roxy.tarot.getDailyCard({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
458
823
|
|
|
459
|
-
//
|
|
460
|
-
const { data } = await roxy.
|
|
824
|
+
// Get yes/no answer to your question
|
|
825
|
+
const { data } = await roxy.tarot.castYesNo({
|
|
826
|
+
body: {
|
|
827
|
+
question: 'Should I accept the job offer?',
|
|
828
|
+
seed: 'optional-seed',
|
|
829
|
+
},
|
|
830
|
+
});
|
|
461
831
|
|
|
462
|
-
//
|
|
463
|
-
const { data } = await roxy.
|
|
464
|
-
body: {
|
|
832
|
+
// Three-Card Spread: Past, Present, Future
|
|
833
|
+
const { data } = await roxy.tarot.castThreeCard({
|
|
834
|
+
body: {
|
|
835
|
+
question: 'What do I need to know about my career?',
|
|
836
|
+
seed: 'optional-seed',
|
|
837
|
+
},
|
|
465
838
|
});
|
|
466
839
|
|
|
467
|
-
//
|
|
468
|
-
const { data } = await roxy.
|
|
840
|
+
// Celtic Cross Spread (10 cards)
|
|
841
|
+
const { data } = await roxy.tarot.castCelticCross({
|
|
842
|
+
body: {
|
|
843
|
+
question: 'What should I know about this situation?',
|
|
844
|
+
seed: 'optional-seed',
|
|
845
|
+
},
|
|
846
|
+
});
|
|
469
847
|
|
|
470
|
-
//
|
|
471
|
-
const { data } = await roxy.
|
|
472
|
-
body: {
|
|
848
|
+
// Love Spread (5 cards)
|
|
849
|
+
const { data } = await roxy.tarot.castLoveSpread({
|
|
850
|
+
body: {
|
|
851
|
+
question: 'What do I need to know about my relationship?',
|
|
852
|
+
seed: 'optional-seed',
|
|
853
|
+
},
|
|
473
854
|
});
|
|
474
855
|
|
|
475
|
-
//
|
|
476
|
-
const { data } = await roxy.
|
|
477
|
-
body: {
|
|
856
|
+
// Career Spread (7 cards)
|
|
857
|
+
const { data } = await roxy.tarot.castCareerSpread({
|
|
858
|
+
body: {
|
|
859
|
+
question: 'What do I need to know about my career path?',
|
|
860
|
+
seed: 'optional-seed',
|
|
861
|
+
},
|
|
478
862
|
});
|
|
479
863
|
|
|
480
|
-
//
|
|
481
|
-
const { data } = await roxy.
|
|
864
|
+
// Custom Spread Builder
|
|
865
|
+
const { data } = await roxy.tarot.castCustomSpread({
|
|
866
|
+
body: {
|
|
867
|
+
spreadName: 'My Custom Spread',
|
|
868
|
+
positions: [
|
|
869
|
+
{
|
|
870
|
+
name: 'Core Issue',
|
|
871
|
+
interpretation: 'What is really going on',
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
name: 'Hidden Factor',
|
|
875
|
+
interpretation: 'What you cannot see',
|
|
876
|
+
},
|
|
877
|
+
{ name: 'Best Action', interpretation: 'What to do next' },
|
|
878
|
+
],
|
|
879
|
+
question: 'Optional question',
|
|
880
|
+
seed: 'optional-seed',
|
|
881
|
+
},
|
|
882
|
+
});
|
|
883
|
+
```
|
|
884
|
+
|
|
885
|
+
---
|
|
886
|
+
|
|
887
|
+
## Human Design — `roxy.humanDesign`
|
|
888
|
+
|
|
889
|
+
Generate the full Human Design bodygraph from a birth moment: type, strategy, inner authority, profile, definition, i...
|
|
890
|
+
|
|
891
|
+
```typescript
|
|
892
|
+
// Generate full Human Design bodygraph - Type, authority, profile, centers, channels, gates
|
|
893
|
+
const { data } = await roxy.humanDesign.generateBodygraph({
|
|
482
894
|
body: {
|
|
483
|
-
|
|
484
|
-
|
|
895
|
+
date: '1990-07-15',
|
|
896
|
+
time: '13:00:00',
|
|
897
|
+
timezone: 5.5,
|
|
898
|
+
latitude: 0,
|
|
899
|
+
longitude: 0,
|
|
485
900
|
},
|
|
486
901
|
});
|
|
487
902
|
|
|
488
|
-
//
|
|
489
|
-
const { data } = await roxy.
|
|
490
|
-
body: {
|
|
903
|
+
// Calculate Human Design connection chart - Two-person composite bodygraph compatibility
|
|
904
|
+
const { data } = await roxy.humanDesign.calculateConnection({
|
|
905
|
+
body: {
|
|
906
|
+
personA: {
|
|
907
|
+
date: '1990-07-15',
|
|
908
|
+
time: '13:00:00',
|
|
909
|
+
timezone: 5.5,
|
|
910
|
+
latitude: 0,
|
|
911
|
+
longitude: 0,
|
|
912
|
+
},
|
|
913
|
+
personB: {
|
|
914
|
+
date: '1990-07-15',
|
|
915
|
+
time: '13:00:00',
|
|
916
|
+
timezone: 5.5,
|
|
917
|
+
latitude: 0,
|
|
918
|
+
longitude: 0,
|
|
919
|
+
},
|
|
920
|
+
},
|
|
491
921
|
});
|
|
492
922
|
|
|
493
|
-
//
|
|
494
|
-
const { data } = await roxy.
|
|
923
|
+
// Calculate Human Design Penta - Small-group BG5 operating system for three to five people
|
|
924
|
+
const { data } = await roxy.humanDesign.calculatePenta({
|
|
925
|
+
body: {
|
|
926
|
+
members: [
|
|
927
|
+
{
|
|
928
|
+
date: '1990-07-15',
|
|
929
|
+
time: '13:00:00',
|
|
930
|
+
timezone: 5.5,
|
|
931
|
+
latitude: 0,
|
|
932
|
+
longitude: 0,
|
|
933
|
+
},
|
|
934
|
+
],
|
|
935
|
+
},
|
|
936
|
+
});
|
|
495
937
|
|
|
496
|
-
//
|
|
497
|
-
const { data } = await roxy.
|
|
938
|
+
// Generate Human Design transit overlay - Current planetary activations on a natal bodygraph
|
|
939
|
+
const { data } = await roxy.humanDesign.generateTransit({
|
|
940
|
+
body: {
|
|
941
|
+
birthData: {
|
|
942
|
+
date: '1990-07-15',
|
|
943
|
+
time: '13:00:00',
|
|
944
|
+
timezone: 5.5,
|
|
945
|
+
latitude: 0,
|
|
946
|
+
longitude: 0,
|
|
947
|
+
},
|
|
948
|
+
date: '2026-05-23',
|
|
949
|
+
time: '12:00:00',
|
|
950
|
+
},
|
|
951
|
+
});
|
|
952
|
+
|
|
953
|
+
// Calculate Human Design type, authority and profile
|
|
954
|
+
const { data } = await roxy.humanDesign.calculateType({
|
|
955
|
+
body: {
|
|
956
|
+
date: '1990-07-15',
|
|
957
|
+
time: '13:00:00',
|
|
958
|
+
timezone: 5.5,
|
|
959
|
+
latitude: 0,
|
|
960
|
+
longitude: 0,
|
|
961
|
+
},
|
|
962
|
+
});
|
|
963
|
+
|
|
964
|
+
// Calculate the 26 Human Design gate activations
|
|
965
|
+
const { data } = await roxy.humanDesign.calculateGates({
|
|
966
|
+
body: {
|
|
967
|
+
date: '1990-07-15',
|
|
968
|
+
time: '13:00:00',
|
|
969
|
+
timezone: 5.5,
|
|
970
|
+
latitude: 0,
|
|
971
|
+
longitude: 0,
|
|
972
|
+
},
|
|
973
|
+
});
|
|
974
|
+
|
|
975
|
+
// Look up a Human Design gate by number
|
|
976
|
+
const { data } = await roxy.humanDesign.getGate({ path: { number: 34 } });
|
|
977
|
+
|
|
978
|
+
// Calculate the defined Human Design channels
|
|
979
|
+
const { data } = await roxy.humanDesign.calculateChannels({
|
|
980
|
+
body: {
|
|
981
|
+
date: '1990-07-15',
|
|
982
|
+
time: '13:00:00',
|
|
983
|
+
timezone: 5.5,
|
|
984
|
+
latitude: 0,
|
|
985
|
+
longitude: 0,
|
|
986
|
+
},
|
|
987
|
+
});
|
|
988
|
+
|
|
989
|
+
// Calculate the nine Human Design centers
|
|
990
|
+
const { data } = await roxy.humanDesign.calculateCenters({
|
|
991
|
+
body: {
|
|
992
|
+
date: '1990-07-15',
|
|
993
|
+
time: '13:00:00',
|
|
994
|
+
timezone: 5.5,
|
|
995
|
+
latitude: 0,
|
|
996
|
+
longitude: 0,
|
|
997
|
+
},
|
|
998
|
+
});
|
|
999
|
+
|
|
1000
|
+
// Look up a Human Design center by id
|
|
1001
|
+
const { data } = await roxy.humanDesign.getCenter({ path: { id: 'sacral' } });
|
|
1002
|
+
|
|
1003
|
+
// Calculate the Human Design profile and line keynotes
|
|
1004
|
+
const { data } = await roxy.humanDesign.calculateProfile({
|
|
1005
|
+
body: {
|
|
1006
|
+
date: '1990-07-15',
|
|
1007
|
+
time: '13:00:00',
|
|
1008
|
+
timezone: 5.5,
|
|
1009
|
+
latitude: 0,
|
|
1010
|
+
longitude: 0,
|
|
1011
|
+
},
|
|
1012
|
+
});
|
|
1013
|
+
|
|
1014
|
+
// Calculate Human Design Variables - The four arrows and Color, Tone, Base substructure
|
|
1015
|
+
const { data } = await roxy.humanDesign.calculateVariables({
|
|
1016
|
+
body: {
|
|
1017
|
+
date: '1990-07-15',
|
|
1018
|
+
time: '13:00:00',
|
|
1019
|
+
timezone: 5.5,
|
|
1020
|
+
latitude: 0,
|
|
1021
|
+
longitude: 0,
|
|
1022
|
+
},
|
|
1023
|
+
});
|
|
498
1024
|
```
|
|
499
1025
|
|
|
500
1026
|
---
|
|
501
1027
|
|
|
502
|
-
##
|
|
1028
|
+
## Forecast — `roxy.forecast`
|
|
503
1029
|
|
|
504
|
-
|
|
1030
|
+
Merge upcoming transit aspects, sign ingresses, retrograde stations, Vimshottari dasha changes, and biorhythm critica...
|
|
505
1031
|
|
|
506
1032
|
```typescript
|
|
507
|
-
//
|
|
508
|
-
const { data } = await roxy.
|
|
1033
|
+
// Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
|
|
1034
|
+
const { data } = await roxy.forecast.generateTimeline({
|
|
1035
|
+
body: {
|
|
1036
|
+
birthData: {
|
|
1037
|
+
date: '1990-07-15',
|
|
1038
|
+
time: '13:30:00',
|
|
1039
|
+
timezone: 5.5,
|
|
1040
|
+
latitude: 0,
|
|
1041
|
+
longitude: 0,
|
|
1042
|
+
},
|
|
1043
|
+
startDate: '2026-06-01',
|
|
1044
|
+
endDate: '2026-08-30',
|
|
1045
|
+
domains: ['western', 'vedic', 'biorhythm'],
|
|
1046
|
+
minSignificance: 0,
|
|
1047
|
+
domainWeights: { vedic: 1.5, biorhythm: 0.5 },
|
|
1048
|
+
},
|
|
1049
|
+
});
|
|
509
1050
|
|
|
510
|
-
//
|
|
511
|
-
const { data } = await roxy.
|
|
1051
|
+
// Western transit forecast - Transit aspects, sign ingresses, retrograde stations
|
|
1052
|
+
const { data } = await roxy.forecast.forecastTransits({
|
|
1053
|
+
body: {
|
|
1054
|
+
birthData: {
|
|
1055
|
+
date: '1990-07-15',
|
|
1056
|
+
time: '13:30:00',
|
|
1057
|
+
timezone: 5.5,
|
|
1058
|
+
latitude: 0,
|
|
1059
|
+
longitude: 0,
|
|
1060
|
+
},
|
|
1061
|
+
startDate: '2026-06-01',
|
|
1062
|
+
endDate: '2026-08-30',
|
|
1063
|
+
minSignificance: 0,
|
|
1064
|
+
},
|
|
1065
|
+
});
|
|
512
1066
|
|
|
513
|
-
//
|
|
514
|
-
const { data } = await roxy.
|
|
1067
|
+
// Significant dates - High-significance cross-domain forecast highlights
|
|
1068
|
+
const { data } = await roxy.forecast.findSignificantDates({
|
|
1069
|
+
body: {
|
|
1070
|
+
birthData: {
|
|
1071
|
+
date: '1990-07-15',
|
|
1072
|
+
time: '13:30:00',
|
|
1073
|
+
timezone: 5.5,
|
|
1074
|
+
latitude: 0,
|
|
1075
|
+
longitude: 0,
|
|
1076
|
+
},
|
|
1077
|
+
startDate: '2026-06-01',
|
|
1078
|
+
endDate: '2026-08-30',
|
|
1079
|
+
domains: ['western', 'vedic', 'biorhythm'],
|
|
1080
|
+
minSignificance: 70,
|
|
1081
|
+
domainWeights: { vedic: 1.5, biorhythm: 0.5 },
|
|
1082
|
+
},
|
|
1083
|
+
});
|
|
515
1084
|
|
|
516
|
-
//
|
|
517
|
-
const { data } = await roxy.
|
|
1085
|
+
// Forecast digest - Pre-summarized next 24h, 7d, 30d, and 90d rollups
|
|
1086
|
+
const { data } = await roxy.forecast.generateDigest({
|
|
1087
|
+
body: {
|
|
1088
|
+
birthData: {
|
|
1089
|
+
date: '1990-07-15',
|
|
1090
|
+
time: '13:30:00',
|
|
1091
|
+
timezone: 5.5,
|
|
1092
|
+
latitude: 0,
|
|
1093
|
+
longitude: 0,
|
|
1094
|
+
},
|
|
1095
|
+
startDate: '2026-06-01',
|
|
1096
|
+
domains: ['western', 'vedic', 'biorhythm'],
|
|
1097
|
+
minSignificance: 0,
|
|
1098
|
+
domainWeights: { vedic: 1.5, biorhythm: 0.5 },
|
|
1099
|
+
top: 3,
|
|
1100
|
+
},
|
|
1101
|
+
});
|
|
518
1102
|
|
|
519
|
-
//
|
|
520
|
-
const { data } = await roxy.
|
|
1103
|
+
// Solar return chart - Annual birthday forecast chart for a single subject
|
|
1104
|
+
const { data } = await roxy.forecast.generateSolarReturn({
|
|
1105
|
+
body: {
|
|
1106
|
+
date: '1990-07-15',
|
|
1107
|
+
time: '14:30:00',
|
|
1108
|
+
year: 2026,
|
|
1109
|
+
latitude: 40.7128,
|
|
1110
|
+
longitude: -74.006,
|
|
1111
|
+
timezone: 5.5,
|
|
1112
|
+
houseSystem: 'placidus',
|
|
1113
|
+
},
|
|
1114
|
+
});
|
|
1115
|
+
```
|
|
521
1116
|
|
|
522
|
-
|
|
523
|
-
const { data } = await roxy.crystals.getCrystalsByElement({ path: { element: 'water' } });
|
|
1117
|
+
---
|
|
524
1118
|
|
|
525
|
-
|
|
526
|
-
const { data } = await roxy.crystals.getBirthstones({ path: { month: 3 } });
|
|
1119
|
+
## Biorhythm — `roxy.biorhythm`
|
|
527
1120
|
|
|
528
|
-
|
|
529
|
-
const { data } = await roxy.crystals.getCrystalPairings({ path: { slug: 'amethyst' } });
|
|
1121
|
+
The most complete biorhythm API + remote MCP for AI agents and developers
|
|
530
1122
|
|
|
531
|
-
|
|
532
|
-
|
|
1123
|
+
```typescript
|
|
1124
|
+
// Get biorhythm reading - Complete cycle analysis for any date
|
|
1125
|
+
const { data } = await roxy.biorhythm.getReading({
|
|
1126
|
+
body: { birthDate: '1990-07-15', targetDate: '2026-04-10' },
|
|
1127
|
+
});
|
|
533
1128
|
|
|
534
|
-
//
|
|
535
|
-
const { data } = await roxy.
|
|
1129
|
+
// Get biorhythm forecast - Multi-day cycle predictions with best and worst days
|
|
1130
|
+
const { data } = await roxy.biorhythm.getForecast({
|
|
1131
|
+
body: {
|
|
1132
|
+
birthDate: '1990-07-15',
|
|
1133
|
+
startDate: '2026-04-01',
|
|
1134
|
+
endDate: '2026-04-30',
|
|
1135
|
+
},
|
|
1136
|
+
});
|
|
536
1137
|
|
|
537
|
-
//
|
|
538
|
-
const { data } = await roxy.
|
|
1138
|
+
// Find critical days - Zero crossing detection for any date range
|
|
1139
|
+
const { data } = await roxy.biorhythm.getCriticalDays({
|
|
1140
|
+
body: {
|
|
1141
|
+
birthDate: '1990-07-15',
|
|
1142
|
+
startDate: '2026-04-01',
|
|
1143
|
+
endDate: '2026-06-30',
|
|
1144
|
+
},
|
|
1145
|
+
});
|
|
539
1146
|
|
|
540
|
-
//
|
|
541
|
-
const { data } = await roxy.
|
|
1147
|
+
// Calculate compatibility - Biorhythm alignment between two people
|
|
1148
|
+
const { data } = await roxy.biorhythm.calculateBioCompatibility({
|
|
1149
|
+
body: {
|
|
1150
|
+
person1: { birthDate: '1990-07-15' },
|
|
1151
|
+
person2: { birthDate: '1992-03-22' },
|
|
1152
|
+
targetDate: '2026-04-10',
|
|
1153
|
+
},
|
|
1154
|
+
});
|
|
1155
|
+
|
|
1156
|
+
// Get phase info - Lightweight cycle status for dashboards and widgets
|
|
1157
|
+
const { data } = await roxy.biorhythm.getPhases({
|
|
1158
|
+
body: { birthDate: '1990-07-15', targetDate: '2026-04-10' },
|
|
1159
|
+
});
|
|
1160
|
+
|
|
1161
|
+
// Get daily biorhythm - Seeded reading for daily check-in features
|
|
1162
|
+
const { data } = await roxy.biorhythm.getDailyBiorhythm({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
542
1163
|
```
|
|
543
1164
|
|
|
544
1165
|
---
|
|
545
1166
|
|
|
546
|
-
## I
|
|
1167
|
+
## I-Ching — `roxy.iching`
|
|
547
1168
|
|
|
548
|
-
|
|
1169
|
+
I-Ching oracle API + hosted MCP for AI agents and developers
|
|
549
1170
|
|
|
550
1171
|
```typescript
|
|
551
|
-
//
|
|
552
|
-
const { data } = await roxy.iching.
|
|
553
|
-
// Returns: { hexagram, lines, changingLinePositions, resultingHexagram }
|
|
1172
|
+
// Get daily I-Ching hexagram
|
|
1173
|
+
const { data } = await roxy.iching.getDailyHexagram({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
554
1174
|
|
|
555
|
-
//
|
|
556
|
-
const { data } = await roxy.iching.
|
|
1175
|
+
// Cast daily I-Ching reading with changing lines
|
|
1176
|
+
const { data } = await roxy.iching.castDailyReading({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
557
1177
|
|
|
558
|
-
//
|
|
559
|
-
const { data } = await roxy.iching.
|
|
1178
|
+
// List all 64 hexagrams
|
|
1179
|
+
const { data } = await roxy.iching.listHexagrams({ query: { limit: 20, offset: 0 } });
|
|
560
1180
|
|
|
561
|
-
//
|
|
562
|
-
const { data } = await roxy.iching.listHexagrams();
|
|
563
|
-
|
|
564
|
-
// Single hexagram by King Wen number (1-64)
|
|
565
|
-
const { data } = await roxy.iching.getHexagram({ path: { number: 1 } });
|
|
566
|
-
|
|
567
|
-
// Random hexagram
|
|
1181
|
+
// Get a random hexagram
|
|
568
1182
|
const { data } = await roxy.iching.getRandomHexagram();
|
|
569
1183
|
|
|
570
|
-
// Lookup by
|
|
1184
|
+
// Lookup hexagram by line pattern
|
|
571
1185
|
const { data } = await roxy.iching.lookupHexagram({ query: { lines: '111111' } });
|
|
572
1186
|
|
|
573
|
-
//
|
|
1187
|
+
// Get hexagram by number
|
|
1188
|
+
const { data } = await roxy.iching.getHexagram({ path: { number: 1 } });
|
|
1189
|
+
|
|
1190
|
+
// Cast an I-Ching reading
|
|
1191
|
+
const { data } = await roxy.iching.castReading({ query: { seed: 'user123-question1' } });
|
|
1192
|
+
|
|
1193
|
+
// List all 8 trigrams
|
|
574
1194
|
const { data } = await roxy.iching.listTrigrams();
|
|
575
1195
|
|
|
576
|
-
//
|
|
577
|
-
const { data } = await roxy.iching.getTrigram({ path: {
|
|
1196
|
+
// Get trigram by number or name
|
|
1197
|
+
const { data } = await roxy.iching.getTrigram({ path: { id: 'Heaven' } });
|
|
578
1198
|
```
|
|
579
1199
|
|
|
580
1200
|
---
|
|
581
1201
|
|
|
582
|
-
##
|
|
1202
|
+
## Crystals and Healing Stones — `roxy.crystals`
|
|
583
1203
|
|
|
584
|
-
|
|
1204
|
+
Production-ready crystal healing API + hosted MCP for AI agents and developers
|
|
585
1205
|
|
|
586
1206
|
```typescript
|
|
587
|
-
//
|
|
588
|
-
const { data } = await roxy.
|
|
1207
|
+
// Crystals by Zodiac Sign
|
|
1208
|
+
const { data } = await roxy.crystals.getCrystalsByZodiac({
|
|
1209
|
+
path: { sign: 'pisces' },
|
|
1210
|
+
query: { limit: 20, offset: 0 },
|
|
1211
|
+
});
|
|
589
1212
|
|
|
590
|
-
//
|
|
591
|
-
const { data } = await roxy.
|
|
1213
|
+
// Crystals by Chakra
|
|
1214
|
+
const { data } = await roxy.crystals.getCrystalsByChakra({
|
|
1215
|
+
path: { chakra: 'Heart' },
|
|
1216
|
+
query: { limit: 20, offset: 0 },
|
|
1217
|
+
});
|
|
592
1218
|
|
|
593
|
-
//
|
|
594
|
-
const { data } = await roxy.
|
|
1219
|
+
// Crystals by Element
|
|
1220
|
+
const { data } = await roxy.crystals.getCrystalsByElement({
|
|
1221
|
+
path: { element: 'Water' },
|
|
1222
|
+
query: { limit: 20, offset: 0 },
|
|
1223
|
+
});
|
|
1224
|
+
|
|
1225
|
+
// Birthstone Crystals by Month
|
|
1226
|
+
const { data } = await roxy.crystals.getBirthstones({ path: { month: 2 } });
|
|
1227
|
+
|
|
1228
|
+
// Search Crystals
|
|
1229
|
+
const { data } = await roxy.crystals.searchCrystals({ query: { q: 'love', limit: 20, offset: 0 } });
|
|
1230
|
+
|
|
1231
|
+
// Crystal Pairings
|
|
1232
|
+
const { data } = await roxy.crystals.getCrystalPairings({ path: { id: 'amethyst' } });
|
|
1233
|
+
|
|
1234
|
+
// Daily Crystal
|
|
1235
|
+
const { data } = await roxy.crystals.getDailyCrystal({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
1236
|
+
|
|
1237
|
+
// Random Crystal
|
|
1238
|
+
const { data } = await roxy.crystals.getRandomCrystal();
|
|
1239
|
+
|
|
1240
|
+
// List Crystal Colors
|
|
1241
|
+
const { data } = await roxy.crystals.listCrystalColors();
|
|
1242
|
+
|
|
1243
|
+
// List Crystal Planets
|
|
1244
|
+
const { data } = await roxy.crystals.listCrystalPlanets();
|
|
1245
|
+
|
|
1246
|
+
// List All Crystals
|
|
1247
|
+
const { data } = await roxy.crystals.listCrystals({
|
|
1248
|
+
query: {
|
|
1249
|
+
chakra: 'Heart',
|
|
1250
|
+
zodiac: 'pisces',
|
|
1251
|
+
element: 'Water',
|
|
1252
|
+
color: 'pink',
|
|
1253
|
+
planet: 'Venus',
|
|
1254
|
+
limit: 20,
|
|
1255
|
+
offset: 0,
|
|
1256
|
+
},
|
|
1257
|
+
});
|
|
595
1258
|
|
|
596
|
-
//
|
|
597
|
-
const { data } = await roxy.
|
|
1259
|
+
// Get Crystal Healing Properties
|
|
1260
|
+
const { data } = await roxy.crystals.getCrystal({ path: { id: 'amethyst' } });
|
|
598
1261
|
```
|
|
599
1262
|
|
|
600
1263
|
---
|
|
601
1264
|
|
|
602
1265
|
## Dreams — `roxy.dreams`
|
|
603
1266
|
|
|
604
|
-
Dream
|
|
1267
|
+
Dream interpretation API + hosted MCP for AI agents and developers
|
|
605
1268
|
|
|
606
1269
|
```typescript
|
|
607
|
-
//
|
|
608
|
-
const { data } = await roxy.dreams.searchDreamSymbols({ query: { q: '
|
|
1270
|
+
// List and search dream symbols
|
|
1271
|
+
const { data } = await roxy.dreams.searchDreamSymbols({ query: { q: 'water', letter: 'a', limit: 20, offset: 0 } });
|
|
609
1272
|
|
|
610
|
-
//
|
|
611
|
-
const { data } = await roxy.dreams.getRandomSymbols();
|
|
1273
|
+
// Get random dream symbols
|
|
1274
|
+
const { data } = await roxy.dreams.getRandomSymbols({ query: { count: 1 } });
|
|
612
1275
|
|
|
613
|
-
//
|
|
1276
|
+
// Get symbol counts by letter
|
|
614
1277
|
const { data } = await roxy.dreams.getSymbolLetterCounts();
|
|
615
1278
|
|
|
616
|
-
//
|
|
617
|
-
const { data } = await roxy.dreams.getDreamSymbol({ path: { id: '
|
|
1279
|
+
// Get dream symbol details
|
|
1280
|
+
const { data } = await roxy.dreams.getDreamSymbol({ path: { id: 'snake' } });
|
|
618
1281
|
|
|
619
|
-
//
|
|
620
|
-
const { data } = await roxy.dreams.getDailyDreamSymbol({ body: { date: '2026-03-
|
|
1282
|
+
// Get daily dream symbol
|
|
1283
|
+
const { data } = await roxy.dreams.getDailyDreamSymbol({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
621
1284
|
```
|
|
622
1285
|
|
|
623
1286
|
---
|
|
624
1287
|
|
|
625
|
-
##
|
|
1288
|
+
## Angel Numbers — `roxy.angelNumbers`
|
|
626
1289
|
|
|
627
|
-
|
|
1290
|
+
Production-ready angel numbers API + hosted MCP for AI agents and developers
|
|
628
1291
|
|
|
629
1292
|
```typescript
|
|
630
|
-
//
|
|
631
|
-
const { data } = await roxy.
|
|
632
|
-
body: { birthDate: '1990-01-15', targetDate: '2026-04-14' },
|
|
633
|
-
});
|
|
1293
|
+
// List All Angel Numbers
|
|
1294
|
+
const { data } = await roxy.angelNumbers.listAngelNumbers({ query: { limit: 20, offset: 0, type: 'repeating' } });
|
|
634
1295
|
|
|
635
|
-
//
|
|
636
|
-
const { data } = await roxy.
|
|
637
|
-
body: { birthDate: '1990-01-15', startDate: '2026-04-14', endDate: '2026-05-14' },
|
|
638
|
-
});
|
|
1296
|
+
// Get Angel Number Meaning
|
|
1297
|
+
const { data } = await roxy.angelNumbers.getAngelNumber({ path: { number: '444' } });
|
|
639
1298
|
|
|
640
|
-
//
|
|
641
|
-
const { data } = await roxy.
|
|
642
|
-
body: { birthDate: '1990-01-15', startDate: '2026-04-14', endDate: '2026-07-14' },
|
|
643
|
-
});
|
|
644
|
-
|
|
645
|
-
// Compatibility between two people on a target date (per-cycle scores, overall rating, strengths, challenges, advice)
|
|
646
|
-
const { data } = await roxy.biorhythm.calculateBioCompatibility({
|
|
647
|
-
body: {
|
|
648
|
-
person1: { birthDate: '1990-01-15' },
|
|
649
|
-
person2: { birthDate: '1988-06-22' },
|
|
650
|
-
targetDate: '2026-04-14',
|
|
651
|
-
},
|
|
652
|
-
});
|
|
653
|
-
|
|
654
|
-
// Lightweight phase info for dashboards and widgets — no editorial text
|
|
655
|
-
const { data } = await roxy.biorhythm.getPhases({
|
|
656
|
-
body: { birthDate: '1990-01-15' },
|
|
657
|
-
});
|
|
1299
|
+
// Analyze Any Number Sequence
|
|
1300
|
+
const { data } = await roxy.angelNumbers.analyzeNumberSequence({ query: { number: '1234' } });
|
|
658
1301
|
|
|
659
|
-
// Daily
|
|
660
|
-
const { data } = await roxy.
|
|
661
|
-
body: { birthDate: '1990-01-15', seed: 'user-123' },
|
|
662
|
-
});
|
|
1302
|
+
// Daily Angel Number
|
|
1303
|
+
const { data } = await roxy.angelNumbers.getDailyAngelNumber({ body: { seed: 'user123', date: '2026-03-06' } });
|
|
663
1304
|
```
|
|
664
1305
|
|
|
665
1306
|
---
|
|
666
1307
|
|
|
667
|
-
## Location — `roxy.location`
|
|
1308
|
+
## Location and Timezone — `roxy.location`
|
|
668
1309
|
|
|
669
|
-
|
|
1310
|
+
City search and geocoding API + hosted MCP for AI agents and astrology apps
|
|
670
1311
|
|
|
671
1312
|
```typescript
|
|
672
|
-
// Search cities
|
|
673
|
-
const { data } = await roxy.location.searchCities({ query: { q: '
|
|
674
|
-
// Returns envelope: { total, limit, offset, cities: [{ name, country, latitude, longitude, timezone, utcOffset, ... }, ...] }
|
|
675
|
-
// `timezone` is the IANA string ("Asia/Kolkata"), `utcOffset` is the decimal fallback (5.5).
|
|
676
|
-
// Pass `timezone` directly to any chart endpoint; the server resolves DST for the chart's `date`.
|
|
1313
|
+
// Search cities worldwide - Geocoding autocomplete with coordinates and timezone
|
|
1314
|
+
const { data } = await roxy.location.searchCities({ query: { q: 'berlin', limit: 10, offset: 0 } });
|
|
677
1315
|
|
|
678
|
-
|
|
679
|
-
const {
|
|
1316
|
+
// List all countries - ISO codes and city coverage
|
|
1317
|
+
const { data } = await roxy.location.listCountries({ query: { limit: 50, offset: 0 } });
|
|
680
1318
|
|
|
681
|
-
//
|
|
682
|
-
const { data
|
|
683
|
-
|
|
684
|
-
// Cities in a country
|
|
685
|
-
const { data: indianCities } = await roxy.location.getCitiesByCountry({ path: { iso2: 'IN' } });
|
|
1319
|
+
// Get cities in a country - Geocoding directory sorted by population
|
|
1320
|
+
const { data } = await roxy.location.getCitiesByCountry({ path: { iso2: 'DE' }, query: { limit: 20, offset: 0 } });
|
|
686
1321
|
```
|
|
687
1322
|
|
|
688
1323
|
---
|
|
689
1324
|
|
|
690
1325
|
## Usage — `roxy.usage`
|
|
691
1326
|
|
|
692
|
-
|
|
1327
|
+
Monitor your API usage, check rate limits, and track request consumption
|
|
693
1328
|
|
|
694
1329
|
```typescript
|
|
1330
|
+
// Get API usage statistics
|
|
695
1331
|
const { data } = await roxy.usage.getUsageStats();
|
|
696
|
-
// Returns: { plan, usedThisMonth, requestsPerMonth, remainingThisMonth, email, status, endDate }
|
|
697
1332
|
```
|
|
698
1333
|
|
|
699
1334
|
---
|
|
700
1335
|
|
|
701
1336
|
## Languages — `roxy.languages`
|
|
702
1337
|
|
|
703
|
-
List the response languages accepted by the `lang` query parameter on every i18n-aware endpoint
|
|
1338
|
+
List the response languages accepted by the `lang` query parameter on every i18n-aware endpoint
|
|
704
1339
|
|
|
705
1340
|
```typescript
|
|
1341
|
+
// List supported response languages
|
|
706
1342
|
const { data } = await roxy.languages.listLanguages();
|
|
707
|
-
// Returns: { languages: [{ code: 'en', name: 'English', nativeName: 'English' }, ...] }
|
|
708
1343
|
```
|
|
709
1344
|
|
|
1345
|
+
<!-- END:METHODS -->
|
|
1346
|
+
|
|
710
1347
|
---
|
|
711
1348
|
|
|
712
1349
|
## Error Handling
|