@@ -155,6 +155,8 @@ const { data } = await roxy.astrology.calculateTransitAspects({
155155 },
156156 transitDate: '2026-02-03',
157157 transitTime: '12:00:00',
158+ planets: ['Jupiter', 'Saturn', 'Pluto'],
159+ aspectTypes: ['CONJUNCTION', 'OPPOSITION', 'TRINE', 'SQUARE'],
158160 minStrength: 50,
159161 },
160162});
@@ -929,6 +931,30 @@ const { data } = await roxy.vedicAstrology.calculateCharaKarakas({
929931 scheme: 'eight',
930932 },
931933});
934+
935+ // Get Bhava Bala (house strength) for all twelve houses - Bhava Bala Calculator API
936+ const { data } = await roxy.vedicAstrology.calculateBhavaBala({
937+ query: { focus: 'general' },
938+ body: {
939+ date: '1990-07-04',
940+ time: '10:12:00',
941+ latitude: 28.6139,
942+ longitude: 77.209,
943+ timezone: 5.5,
944+ },
945+ });
946+
947+ // Get the Bhav Chalit (Chalit Kundli) cusp-based house chart - Bhav Chalit API
948+ const { data } = await roxy.vedicAstrology.calculateBhavChalit({
949+ query: { focus: 'general' },
950+ body: {
951+ date: '1990-07-04',
952+ time: '10:12:00',
953+ latitude: 28.6139,
954+ longitude: 77.209,
955+ timezone: 5.5,
956+ },
957+ });
932958```
933959
934960---
@@ -1332,39 +1358,39 @@ const { data } = await roxy.tarot.getDailyCard({ body: { seed: 'user123', date:
13321358const { data } = await roxy.tarot.castYesNo({
13331359 body: {
13341360 question: 'Should I accept the job offer?',
1335- seed: 'optional-seed ',
1361+ seed: 'reading-2f9c1a ',
13361362 },
13371363});
13381364
13391365// Three-Card Spread: Past, Present, Future
13401366const { data } = await roxy.tarot.castThreeCard({
13411367 body: {
13421368 question: 'What do I need to know about my career?',
1343- seed: 'optional-seed ',
1369+ seed: 'reading-2f9c1a ',
13441370 },
13451371});
13461372
13471373// Celtic Cross Spread (10 cards)
13481374const { data } = await roxy.tarot.castCelticCross({
13491375 body: {
13501376 question: 'What should I know about this situation?',
1351- seed: 'optional-seed ',
1377+ seed: 'reading-2f9c1a ',
13521378 },
13531379});
13541380
13551381// Love Spread (5 cards)
13561382const { data } = await roxy.tarot.castLoveSpread({
13571383 body: {
13581384 question: 'What do I need to know about my relationship?',
1359- seed: 'optional-seed ',
1385+ seed: 'reading-2f9c1a ',
13601386 },
13611387});
13621388
13631389// Career Spread (7 cards)
13641390const { data } = await roxy.tarot.castCareerSpread({
13651391 body: {
13661392 question: 'What do I need to know about my career path?',
1367- seed: 'optional-seed ',
1393+ seed: 'reading-2f9c1a ',
13681394 },
13691395});
13701396
@@ -1383,8 +1409,8 @@ const { data } = await roxy.tarot.castCustomSpread({
13831409 },
13841410 { name: 'Best Action', interpretation: 'What to do next' },
13851411 ],
1386- question: 'Optional question ',
1387- seed: 'optional-seed ',
1412+ question: 'How do I move forward with this project? ',
1413+ seed: 'reading-2f9c1a ',
13881414 },
13891415});
13901416```
0 commit comments