{
  "info": {
    "_postman_id": "f4da1235-26ee-4f0f-a3f4-6b4ac052bd34",
    "name": "VedAstro Open API",
    "description": "Ready-to-run POST examples for every callable VedAstro calculator. Set the collection-level apiKey variable for unlimited access, or leave it blank for the free tier. Change ayanamsa once to apply it to every request. Documentation: https://vedastro.org/APIBuilder.html",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "apikey",
    "apikey": [
      {
        "key": "key",
        "value": "x-api-key",
        "type": "string"
      },
      {
        "key": "value",
        "value": "{{apiKey}}",
        "type": "string"
      },
      {
        "key": "in",
        "value": "header",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "pm.test(\"HTTP status is successful\", function () {",
          "    pm.expect(pm.response.code).to.be.within(200, 299);",
          "});",
          "",
          "const contentType = (pm.response.headers.get(\"Content-Type\") || \"\").toLowerCase();",
          "if (contentType.includes(\"json\")) {",
          "    pm.test(\"VedAstro response passed\", function () {",
          "        const data = pm.response.json();",
          "        if (Object.prototype.hasOwnProperty.call(data, \"Status\")) {",
          "            pm.expect(data.Status, JSON.stringify(data.Payload)).to.eql(\"Pass\");",
          "        }",
          "    });",
          "}"
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.vedastro.org/api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "",
      "type": "string"
    },
    {
      "key": "ayanamsa",
      "value": "RAMAN",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Easy",
      "description": "Popular starters from the VedAstro API Builder.",
      "item": [
        {
          "name": "AllPlanetData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetData"
              ]
            },
            "description": "Runs the automatic discovery system to return ball supported calculationsb that accept a cPlanetNamec and cTimec.\n\n**Signature:** `AllPlanetData(PlanetNameplanetName,Timetime)`  \n**Returns:** `List<APIFunctionResult>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "AllHouseData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseName\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseData"
              ]
            },
            "description": "Runs the automatic discovery system to return ball supported calculationsb that accept a cHouseNamec and cTimec.\n\n**Signature:** `AllHouseData(HouseNamehouseName,Timetime)`  \n**Returns:** `List<APIFunctionResult>`\n\n**Parameters**\n- `houseName` (`HouseName`): The house to evaluate.\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "DasaAtRange",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"StartTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EndTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3,\n  \"PrecisionHours\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaAtRange",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaAtRange"
              ]
            },
            "description": "Returns the sequence of Vimshottari Dasa periods across a time range for the given birth chart sampling the range at the given precision and nesting down to the requested number of levels. Use this to build a Dasa timeline between two dates.\n\n**Signature:** `DasaAtRange(TimebirthTime,TimestartTime,TimeendTime,intlevels,intprecisionHours)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `startTime` (`Time`): Start of the range to scan.\n- `endTime` (`Time`): End of the range to scan.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3.\n- `precisionHours` (`Int32`): Sampling step across the range in hours default 100."
          },
          "response": []
        },
        {
          "name": "HoroscopePredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"SortByWeight\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoroscopePredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoroscopePredictions"
              ]
            },
            "description": "Returns all horoscope predictions whose underlying events are currently true for the given birth chart. The method 1. starts with the full stored prediction list 2. optionally filters by event tags 3. keeps only predictions whose event condition is active 4. optionally calculates a weight score using related planet and house strengths 5. sorts the results by descending weight when requested.\n\n**Signature:** `HoroscopePredictions(TimebirthTime,List<HoroscopeTag>filterTags,boolsortByWeight)`  \n**Returns:** `List<HoroscopePrediction>`\n\n**Parameters**\n- `birthTime` (`Time`): The chart time to evaluate.\n- `filterTags` (`List<HoroscopeTag>`): Optional event tags used to restrict which predictions are checked.\n- `sortByWeight` (`Boolean`): When ctruec calculates and applies descending weight sorting."
          },
          "response": []
        },
        {
          "name": "SouthIndianChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ChartType\": \"RasiD1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SouthIndianChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SouthIndianChart"
              ]
            },
            "description": "Creates a bSouth Indian style kundali chartb and returns the chart as an SVG string. The method supports different chart types such as D1 and other divisional charts supported by the chart factory.\n\n**Signature:** `SouthIndianChart(Timetime,ChartTypechartType)`  \n**Returns:** `String`\n\n**Parameters**\n- `time` (`Time`): The chart time and location.\n- `chartType` (`ChartType`): The chart type to generate. Defaults to cRasiD1c."
          },
          "response": []
        },
        {
          "name": "MatchReport",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MaleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"FemaleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MatchReport",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MatchReport"
              ]
            },
            "description": "Creates a full Kutabased compatibility report for two birth times. The method wraps the male and female birth times into temporary Person objects passes those objects into the compatibility engine returns the generated MatchReport. This is the core compatibility method for producing a standard Vedic match report between two charts.\n\n**Signature:** `MatchReport(TimemaleBirthTime,TimefemaleBirthTime)`  \n**Returns:** `MatchReport`\n\n**Parameters**\n- `maleBirthTime` (`Time`): Birth time of the male chart.\n- `femaleBirthTime` (`Time`): Birth time of the female chart."
          },
          "response": []
        }
      ]
    },
    {
      "name": "Advanced",
      "description": "Every remaining callable calculator, sorted alphabetically.",
      "item": [
        {
          "name": "AkshavedamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AkshavedamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AkshavedamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Akshavedamsha D45 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D45 sign.\n\n**Signature:** `AkshavedamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "AkshavedamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AkshavedamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AkshavedamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Akshavedamsha D45 equivalent. This is the main signconversion helper used for D45 chart calculations.\n\n**Signature:** `AkshavedamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "AllBeneficPlanetsInGoodConjunctionWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllBeneficPlanetsInGoodConjunctionWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllBeneficPlanetsInGoodConjunctionWith"
              ]
            },
            "description": "Returns all natural benefic planets that are in genuinely beneficial conjunction with the input planet. The method requires both conditions the conjunct planet must be a natural benefic in the current context the conjunct planet must have a friendly or bestfriend relationship with the input planet. The natural benefic set starts with Jupiter Venus. It conditionally adds Moon when the Moon is benefic Mercury when Mercury is not afflicted.\n\n**Signature:** `AllBeneficPlanetsInGoodConjunctionWith(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet receiving the conjunction.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHarmfulPlanetsInBadConjunctionWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHarmfulPlanetsInBadConjunctionWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHarmfulPlanetsInBadConjunctionWith"
              ]
            },
            "description": "Returns all planets that form genuinely harmful conjunctions with the input planet. The method gets the physically harmful planet list checks which harmful planets are conjunct with the input planet always counts natural malefics as harmful checks relationship for Sun weak Moon and afflicted Mercury includes those conditional harmful planets only when their relationship is enemy or bitter enemy.\n\n**Signature:** `AllHarmfulPlanetsInBadConjunctionWith(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet receiving the conjunction.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseAkshavedamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseAkshavedamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseAkshavedamshaSign"
              ]
            },
            "description": "Returns the Akshavedamsha D45 sign for every house at the given time.\n\n**Signature:** `AllHouseAkshavedamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseBhamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseBhamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseBhamshaSign"
              ]
            },
            "description": "Returns the Bhamsha D27 sign for every house at the given time.\n\n**Signature:** `AllHouseBhamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseBhavaChalitSigns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseBhavaChalitSigns",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseBhavaChalitSigns"
              ]
            },
            "description": "Returns the Bhava Chalit sign for every house at the given time. The method builds a dictionary where each key is a HouseName and each value is the Bhava Chalit sign for that house.\n\n**Signature:** `AllHouseBhavaChalitSigns(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseChaturthamsaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseChaturthamsaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseChaturthamsaSign"
              ]
            },
            "description": "Returns the Chaturthamsha D4 sign for every house at the given time.\n\n**Signature:** `AllHouseChaturthamsaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseChaturvimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseChaturvimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseChaturvimshamshaSign"
              ]
            },
            "description": "Returns the Chaturvimshamsha D24 sign for every house at the given time.\n\n**Signature:** `AllHouseChaturvimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseConstellationLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseConstellationLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseConstellationLord"
              ]
            },
            "description": "Returns the constellation lord for every house at the given time. The method loops through all twelve houses finds the constellation at the middle longitude of each house gets the lord of that constellation stores the result in a dictionary keyed by house.\n\n**Signature:** `AllHouseConstellationLord(Timetime)`  \n**Returns:** `Dictionary<HouseName, PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseDashamamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseDashamamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseDashamamshaSign"
              ]
            },
            "description": "Returns the Dashamamsha D10 sign for every house at the given time.\n\n**Signature:** `AllHouseDashamamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseDrekkanaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseDrekkanaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseDrekkanaSign"
              ]
            },
            "description": "Returns the Drekkana D3 sign for every house at the given time.\n\n**Signature:** `AllHouseDrekkanaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseDwadashamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseDwadashamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseDwadashamshaSign"
              ]
            },
            "description": "Returns the Dwadashamsha D12 sign for every house at the given time.\n\n**Signature:** `AllHouseDwadashamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseHoraSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseHoraSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseHoraSign"
              ]
            },
            "description": "Returns the Hora D2 sign for every house at the given time.\n\n**Signature:** `AllHouseHoraSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseKhavedamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseKhavedamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseKhavedamshaSign"
              ]
            },
            "description": "Returns the Khavedamsha D40 sign for every house at the given time.\n\n**Signature:** `AllHouseKhavedamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseLongitudes"
              ]
            },
            "description": "Calculates and returns the full longitude ranges for all twelve houses. The method checks the cache gets the house cusp data derives the angular house points constructs House objects containing beginning middle and ending longitudes returns the complete list.\n\n**Signature:** `AllHouseLongitudes(Timetime)`  \n**Returns:** `List<House>`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "AllHouseNavamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseNavamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseNavamshaSign"
              ]
            },
            "description": "Returns the Navamsha D9 sign for every house at the given time.\n\n**Signature:** `AllHouseNavamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHousePlanetsInHouseBasedOnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHousePlanetsInHouseBasedOnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHousePlanetsInHouseBasedOnSign"
              ]
            },
            "description": "Returns all planets occupying each house using signbased house placement. The method loops through every house finds the planets in that house using PlanetsInHouseBasedOnSign... and stores the result in a dictionary.\n\n**Signature:** `AllHousePlanetsInHouseBasedOnSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, List<PlanetName>>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseRasiSigns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseRasiSigns",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseRasiSigns"
              ]
            },
            "description": "Returns the Rasi sign for every house at the given time. This is the bulk version of HouseRasiSign... packaged as a dictionary for all houses.\n\n**Signature:** `AllHouseRasiSigns(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseSaptamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseSaptamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseSaptamshaSign"
              ]
            },
            "description": "Returns the Saptamsha D7 sign for every house at the given time.\n\n**Signature:** `AllHouseSaptamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseShashtyamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseShashtyamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseShashtyamshaSign"
              ]
            },
            "description": "Returns the Shashtyamsha D60 sign for every house at the given time.\n\n**Signature:** `AllHouseShashtyamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseShodashamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseShodashamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseShodashamshaSign"
              ]
            },
            "description": "Returns the Shodashamsha D16 sign for every house at the given time.\n\n**Signature:** `AllHouseShodashamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHousesOrderedByStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHousesOrderedByStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHousesOrderedByStrength"
              ]
            },
            "description": "Returns all houses ordered by strength strongest first. The method checks the cache calculates strength for every house sorts by descending strength returns only the house names.\n\n**Signature:** `AllHousesOrderedByStrength(Timetime)`  \n**Returns:** `HouseName[]`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseTrimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseTrimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseTrimshamshaSign"
              ]
            },
            "description": "Returns the Trimshamsha D30 sign for every house at the given time.\n\n**Signature:** `AllHouseTrimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllHouseVimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllHouseVimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllHouseVimshamshaSign"
              ]
            },
            "description": "Returns the Vimshamsha D20 sign for every house at the given time.\n\n**Signature:** `AllHouseVimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<HouseName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllMaleficPlanetsAspecting",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllMaleficPlanetsAspecting",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllMaleficPlanetsAspecting"
              ]
            },
            "description": "Returns all functional malefic planets that aspect the specified planet. The method gets the complete malefic list for the charts Lagna checks which of those malefics aspect the input planet returns the matching planets.\n\n**Signature:** `AllMaleficPlanetsAspecting(PlanetNameplanetReceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planetReceivingAspect` (`PlanetName`): The planet receiving the aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPhysicallyHarmfulPlanetsAspecting",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPhysicallyHarmfulPlanetsAspecting",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPhysicallyHarmfulPlanetsAspecting"
              ]
            },
            "description": "Returns all physically harmful planets that aspect a specified planet. The method gets the physically harmful planet list checks which harmful planets aspect the target planet returns the matching planets.\n\n**Signature:** `AllPhysicallyHarmfulPlanetsAspecting(PlanetNameplanetReceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planetReceivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPhysicallyHarmfulPlanetsConjunctWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPhysicallyHarmfulPlanetsConjunctWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPhysicallyHarmfulPlanetsConjunctWith"
              ]
            },
            "description": "Returns all physically harmful planets conjunct with a specified planet. The method gets all planets conjunct with the input planet gets the physically harmful planet list returns the conjunct planets that also appear in the harmful list.\n\n**Signature:** `AllPhysicallyHarmfulPlanetsConjunctWith(PlanetNameplanetName,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetAkshavedamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetAkshavedamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetAkshavedamshaSign"
              ]
            },
            "description": "Returns the Akshavedamsha D45 sign for every planet at the given time.\n\n**Signature:** `AllPlanetAkshavedamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetBhamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetBhamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetBhamshaSign"
              ]
            },
            "description": "Returns the Bhamsha D27 sign for every planet at the given time.\n\n**Signature:** `AllPlanetBhamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetChaturthamsaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetChaturthamsaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetChaturthamsaSign"
              ]
            },
            "description": "Returns the Chaturthamsha D4 sign for every planet at the given time.\n\n**Signature:** `AllPlanetChaturthamsaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetChaturvimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetChaturvimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetChaturvimshamshaSign"
              ]
            },
            "description": "Returns the Chaturvimshamsha D24 sign for every planet at the given time.\n\n**Signature:** `AllPlanetChaturvimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetConstellation"
              ]
            },
            "description": "Returns the Nirayana bconstellation of all nine planetsb at the given time.\n\n**Signature:** `AllPlanetConstellation(Timetime)`  \n**Returns:** `Dictionary<PlanetName, Constellation>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetDashamamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetDashamamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetDashamamshaSign"
              ]
            },
            "description": "Returns the Dashamsha D10 sign for every planet at the given time.\n\n**Signature:** `AllPlanetDashamamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetDrekkanaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetDrekkanaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetDrekkanaSign"
              ]
            },
            "description": "Returns the Drekkana D3 sign for every planet at the given time.\n\n**Signature:** `AllPlanetDrekkanaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetDwadashamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetDwadashamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetDwadashamshaSign"
              ]
            },
            "description": "Returns the Dwadashamsha D12 sign for every planet at the given time.\n\n**Signature:** `AllPlanetDwadashamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetFixedLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetFixedLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetFixedLongitude"
              ]
            },
            "description": "Returns the Sayana fixedzodiac longitudes of all nine planets at the given time. The method calculates and packages the Sayana longitude for the same nineplanet set used by AllPlanetLongitude....\n\n**Signature:** `AllPlanetFixedLongitude(Timetime)`  \n**Returns:** `List<PlanetLongitude>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetHoraSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetHoraSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetHoraSign"
              ]
            },
            "description": "Returns the Hora D2 sign for every planet at the given time.\n\n**Signature:** `AllPlanetHoraSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetHouseData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"HouseName\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetHouseData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetHouseData"
              ]
            },
            "description": "Runs the automatic discovery system to return ball supported calculationsb that accept a cPlanetNamec cHouseNamec and cTimec.\n\n**Signature:** `AllPlanetHouseData(PlanetNameplanetName,HouseNamehouseName,Timetime)`  \n**Returns:** `List<APIFunctionResult>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `houseName` (`HouseName`): The house to evaluate.\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "AllPlanetKhavedamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetKhavedamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetKhavedamshaSign"
              ]
            },
            "description": "Returns the Khavedamsha D40 sign for every planet at the given time.\n\n**Signature:** `AllPlanetKhavedamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetLongitude"
              ]
            },
            "description": "Returns the Nirayana longitudes of all nine planets at the given time. The method calculates and packages the longitude of Sun Moon Mars Mercury Jupiter Venus Saturn Ketu Rahu\n\n**Signature:** `AllPlanetLongitude(Timetime)`  \n**Returns:** `List<PlanetLongitude>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetNavamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetNavamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetNavamshaSign"
              ]
            },
            "description": "Returns the Navamsha D9 sign for every planet at the given time.\n\n**Signature:** `AllPlanetNavamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetOrderedByStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetOrderedByStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetOrderedByStrength"
              ]
            },
            "description": "Returns all nine planets ordered by Shadbala strength strongest first. The method checks the cache calculates Shadbala Pinda for every planet sorts the planets by descending strength returns only the planet names.\n\n**Signature:** `AllPlanetOrderedByStrength(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetRasiSigns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetRasiSigns",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetRasiSigns"
              ]
            },
            "description": "Returns the Rasi D1 sign for every planet at the given time.\n\n**Signature:** `AllPlanetRasiSigns(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetSaptamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetSaptamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetSaptamshaSign"
              ]
            },
            "description": "Returns the Saptamsha D7 sign for every planet at the given time.\n\n**Signature:** `AllPlanetSaptamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetShashtyamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetShashtyamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetShashtyamshaSign"
              ]
            },
            "description": "Returns the Shashtyamsha D60 sign for every planet at the given time.\n\n**Signature:** `AllPlanetShashtyamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetShodashamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetShodashamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetShodashamshaSign"
              ]
            },
            "description": "Returns the Shodamsha D16 sign for every planet at the given time.\n\n**Signature:** `AllPlanetShodashamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetSignsBasedOnHouseLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetSignsBasedOnHouseLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetSignsBasedOnHouseLongitudes"
              ]
            },
            "description": "Returns the zodiac sign of every planet based on the houselongitude method rather than the direct Rasi sign. Each planet is mapped to the sign computed from the house midpoint longitude which can differ from the standard Rasi sign and is used in Bhavacentric analysis.\n\n**Signature:** `AllPlanetSignsBasedOnHouseLongitudes(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInASignFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromLagna\": 1,\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInASignFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInASignFromLagna"
              ]
            },
            "description": "Returns all planets located in a sign counted from the Lagna Ascendant. The method finds the sign that is the requested count from Lagna returns all planets in that sign.\n\n**Signature:** `AllPlanetsInASignFromLagna(intsignsFromLagna,TimebirthTime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `signsFromLagna` (`Int32`): The inclusive count from the Lagna sign.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInBadAspectToHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInBadAspectToHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInBadAspectToHouse"
              ]
            },
            "description": "Returns all planets casting bad aspects onto a house. The method gets all planets aspecting the requested house automatically includes natural malefics for all other planets checks the relationship between the planet and the house sign returns planets whose aspect is harmful by nature or relationship.\n\n**Signature:** `AllPlanetsInBadAspectToHouse(HouseNamereceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `receivingAspect` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInBadAspectToPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInBadAspectToPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInBadAspectToPlanet"
              ]
            },
            "description": "Returns all planets casting bad aspects onto a given planet. The method gets all planets aspecting the receiving planet automatically includes natural malefics for all other planets checks whether the combined relationship is enemy or bitter enemy returns the resulting badaspect list.\n\n**Signature:** `AllPlanetsInBadAspectToPlanet(PlanetNamereceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInEnemyConjunctionWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInEnemyConjunctionWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInEnemyConjunctionWith"
              ]
            },
            "description": "Returns all planets conjunct with the input planet that are enemies by combined relationship. The method gets all planets conjunct with the input planet evaluates each conjunct planets combined relationship to the input planet returns planets whose relationship is enemy or bitter enemy.\n\n**Signature:** `AllPlanetsInEnemyConjunctionWith(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInFriendConjunctionWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInFriendConjunctionWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInFriendConjunctionWith"
              ]
            },
            "description": "Returns all planets conjunct with the input planet that are friends by combined relationship. The method gets all planets conjunct with the input planet evaluates each conjunct planets combined relationship to the input planet returns planets whose relationship is friend or best friend.\n\n**Signature:** `AllPlanetsInFriendConjunctionWith(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsInSignsFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromList\": [\n    1,\n    3,\n    5\n  ],\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsInSignsFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsInSignsFromLagna"
              ]
            },
            "description": "Returns all planets located in any of several signs counted from Lagna. The method loops through the requested sign counts gathers planets from each counted sign removes duplicate planets returns the final list.\n\n**Signature:** `AllPlanetsInSignsFromLagna(int[]signsFromList,TimebirthTime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `signsFromList` (`Int32[]`): The inclusive sign counts from Lagna to check.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetsSignsFromPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromMoon\": 1,\n  \"StartPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetsSignsFromPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetsSignsFromPlanet"
              ]
            },
            "description": "Returns all planets located in a sign counted from a reference planet. The method finds the sign that is the requested count from startPlanet returns all planets currently occupying that sign.\n\n**Signature:** `AllPlanetsSignsFromPlanet(intsignsFromMoon,PlanetNamestartPlanet,TimebirthTime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `signsFromMoon` (`Int32`): The inclusive sign count from the reference planet. The parameter name mentions Moon but the method works from any startPlanet.\n- `startPlanet` (`PlanetName`): The planet whose sign is used as the starting point.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetStrength"
              ]
            },
            "description": "Returns the Shadbala strength of all nine planets. The method calculates PlanetShadbalaPinda... for each planet and returns a list of strengthandplanet tuples.\n\n**Signature:** `AllPlanetStrength(Timetime)`  \n**Returns:** `List<ValueTuple<Double, PlanetName>>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetTrimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetTrimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetTrimshamshaSign"
              ]
            },
            "description": "Returns the Trimshamsha D30 sign for every planet at the given time.\n\n**Signature:** `AllPlanetTrimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllPlanetVimshamshaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllPlanetVimshamshaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllPlanetVimshamshaSign"
              ]
            },
            "description": "Returns the Vimshamsha D20 sign for every planet at the given time.\n\n**Signature:** `AllPlanetVimshamshaSign(Timetime)`  \n**Returns:** `Dictionary<PlanetName, ZodiacSign>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AllTimeData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllTimeData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllTimeData"
              ]
            },
            "description": "Runs the librarys automatic discovery system to return ball supported calculationsb that accept a single cTimec input. The method excludes itself from the search before executing the matching functions.\n\n**Signature:** `AllTimeData(Timetime)`  \n**Returns:** `List<APIFunctionResult>`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "AllZodiacSignData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacName\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AllZodiacSignData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AllZodiacSignData"
              ]
            },
            "description": "Runs the automatic discovery system to return ball supported calculationsb that accept a cZodiacNamec and cTimec.\n\n**Signature:** `AllZodiacSignData(ZodiacNamezodiacName,Timetime)`  \n**Returns:** `List<APIFunctionResult>`\n\n**Parameters**\n- `zodiacName` (`ZodiacName`): The zodiac sign to evaluate.\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "AngaGrahaTransit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AngaGrahaTransit",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AngaGrahaTransit"
              ]
            },
            "description": "Calculates Anga Graha Transit. Anga Graha is a Tithibased transit sensitivity calculation. It compares Natal Moon Tithi vs Planet transit Tithi Based on Jagannatha Hora transit calculation methods.\n\n**Signature:** `AngaGrahaTransit(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "ArthaprahaaraLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ArthaprahaaraLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ArthaprahaaraLongitude"
              ]
            },
            "description": "Calculates the longitude of bArthaprahaarab the Upagraha associated with the bmiddle of Mercurys planetary partb. The method delegates the actual calculation to cUpagrahaLongitude...c.\n\n**Signature:** `ArthaprahaaraLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "ArudhaLagnaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ArudhaLagnaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ArudhaLagnaSign"
              ]
            },
            "description": "Calculates the Arudha Lagna sign. The method follows the source rule find the Janma Lagna sign find the sign occupied by the Lagna lord count from the Lagna sign to the Lagna lords sign count the same distance again from the Lagna lords sign return the resulting sign as the Arudha Lagna.\n\n**Signature:** `ArudhaLagnaSign(Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "ArudhaOfHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputHouse\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ArudhaOfHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ArudhaOfHouse"
              ]
            },
            "description": "Calculates the Arudha of a given house. The method gets the sign of the input house finds the lord of that house gets the sign occupied by the house lord counts from the house sign to the lords sign counts the same distance again from the lords sign converts the resulting sign back into a house.\n\n**Signature:** `ArudhaOfHouse(HouseNameinputHouse,Timetime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `inputHouse` (`HouseName`): The house whose Arudha should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AscendantDegreesToARMC",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Ascendant\": 120.0,\n  \"ObliquityOfEcliptic\": 23.4367,\n  \"GeographicLatitude\": 12.9716,\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AscendantDegreesToARMC",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AscendantDegreesToARMC"
              ]
            },
            "description": "Converts a tropical ascendant degree into an ARMC value. The method is intended to calculate right ascension calculate declination derive oblique ascension convert that into ARMC based on the ascendant quadrant.\n\n**Signature:** `AscendantDegreesToARMC(doubleascendant,doubleobliquityOfEcliptic,doublegeographicLatitude,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `ascendant` (`Double`): Tropical ascendant degree.\n- `obliquityOfEcliptic` (`Double`): Obliquity of the ecliptic.\n- `geographicLatitude` (`Double`): Geographic latitude.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AshtakavargaLongevity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AshtakavargaLongevity",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AshtakavargaLongevity"
              ]
            },
            "description": "Calculates a gross longevity estimate using the Ashtakavarga Sodya Pinda method. The method calculates reduced Sodya Pinda values for the seven classical planets sums those values applies the standard longevity formula returns the result in years.\n\n**Signature:** `AshtakavargaLongevity(TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "AshtakavargaTransitPrediction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"HouseFromPlanet\": 1,\n  \"Divisor\": 1,\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"UseRawBindus\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AshtakavargaTransitPrediction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AshtakavargaTransitPrediction"
              ]
            },
            "description": "Applies the general Ashtakavarga transit prediction formula for a given planet and target house. The source describes the calculation in the form result Sodya Pinda x bindus in house divided by divisor. Typical divisor values include 27 for Nakshatrabased calculations and 12 for signbased calculations.\n\n**Signature:** `AshtakavargaTransitPrediction(PlanetNameplanet,inthouseFromPlanet,intdivisor,TimebirthTime,booluseRawBindus)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose Ashtakavarga is being used.\n- `houseFromPlanet` (`Int32`): The target house counted from that planet.\n- `divisor` (`Int32`): The divisor used by the chosen prediction formula.\n- `birthTime` (`Time`): The natives birth time.\n- `useRawBindus` (`Boolean`): Whether raw bindus should be used instead of reduced values."
          },
          "response": []
        },
        {
          "name": "AshtakvargaLifeMap",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AshtakvargaLifeMap",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AshtakvargaLifeMap"
              ]
            },
            "description": "Returns housemapped Sarvashtakavarga with strength assessments for the Life Map visualization. Every chart totals 337 the distribution across 12 houses shows where life energy concentrates. Per BV Raman Ashtakavarga System Ch. XI.\n\n**Signature:** `AshtakvargaLifeMap(TimebirthTime)`  \n**Returns:** `AshtakvargaLifeMapResult`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "AspectReceivedByDispositor",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AspectReceivedByDispositor",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AspectReceivedByDispositor"
              ]
            },
            "description": "Returns all planets aspecting the dispositor of the given planet.\n\n**Signature:** `AspectReceivedByDispositor(PlanetNameplanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose dispositor should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "AyanamsaDegree",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/AyanamsaDegree",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "AyanamsaDegree"
              ]
            },
            "description": "Returns the ayanamsa value for the supplied time. The method checks the cache uses a manual Raman ayanamsa calculation when Ayanamsa is set to Raman otherwise retrieves the ayanamsa from Swiss Ephemeris.\n\n**Signature:** `AyanamsaDegree(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The time for which ayanamsa should be calculated."
          },
          "response": []
        },
        {
          "name": "BeneficHouseListByShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PersonBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Threshold\": 50\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficHouseListByShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficHouseListByShadbala"
              ]
            },
            "description": "Returns houses whose total house strength is above a supplied threshold. The method calculates HouseStrength... for every house compares each house strength against the threshold returns houses whose strength is greater than the threshold.\n\n**Signature:** `BeneficHouseListByShadbala(TimepersonBirthTime,intthreshold)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `personBirthTime` (`Time`): The chart time.\n- `threshold` (`Int32`): The minimum house strength required for inclusion."
          },
          "response": []
        },
        {
          "name": "BeneficPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficPlanetList"
              ]
            },
            "description": "Returns the complete list of planets that are benefic for the charts Lagna. The method checks the seven classical planets against benefic lordship treats Moon as benefic only when it is both benefic for the Lagna and benefic by lunar phase treats Mercury as benefic only when it is both benefic for the Lagna and not afflicted by malefics excludes planets that are neutral or conditionally unfavorable.\n\n**Signature:** `BeneficPlanetList(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BeneficPlanetListByShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PersonBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Threshold\": 50\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficPlanetListByShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficPlanetListByShadbala"
              ]
            },
            "description": "Returns planets whose Shadbala strength is above a supplied threshold. The method calculates the strength of all planets checks each planets strength value returns planets whose strength is greater than threshold.\n\n**Signature:** `BeneficPlanetListByShadbala(TimepersonBirthTime,intthreshold)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `personBirthTime` (`Time`): The chart time.\n- `threshold` (`Int32`): The minimum strength required for a planet to be included."
          },
          "response": []
        },
        {
          "name": "BeneficPlanetListInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficPlanetListInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficPlanetListInSign"
              ]
            },
            "description": "Returns all lagnaspecific benefic planets located in a given sign. The method gets all planets in the requested sign gets the complete benefic list for the chart returns the intersection of those two lists.\n\n**Signature:** `BeneficPlanetListInSign(ZodiacNamesign,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `sign` (`ZodiacName`): The sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BeneficPlanetsAspectingHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficPlanetsAspectingHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficPlanetsAspectingHouse"
              ]
            },
            "description": "Returns all lagnaspecific benefic planets aspecting a given house. The method gets the complete benefic planet list filters it to planets aspecting the requested house.\n\n**Signature:** `BeneficPlanetsAspectingHouse(HouseNamehouse,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `house` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BeneficPlanetsAspectingPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Lord\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BeneficPlanetsAspectingPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BeneficPlanetsAspectingPlanet"
              ]
            },
            "description": "Returns all lagnaspecific benefic planets aspecting a given planet. The method gets the complete benefic planet list filters it to planets aspecting the requested planet.\n\n**Signature:** `BeneficPlanetsAspectingPlanet(PlanetNamelord,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `lord` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BhamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Bhamsha D27 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D27 sign.\n\n**Signature:** `BhamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "BhamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Bhamsha D27 equivalent. This is the main signconversion helper used for D27 chart calculations.\n\n**Signature:** `BhamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "BhavaAdhipathiBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhavaAdhipathiBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhavaAdhipathiBala"
              ]
            },
            "description": "Calculates Bhavadhipathi Bala the strength contributed by the lord of each house. For every house the method finds the lord of the house calculates that planets total Shadbala Pinda uses the planets Shadbala as the houselord strength.\n\n**Signature:** `BhavaAdhipathiBala(Timetime)`  \n**Returns:** `HouseSubStrength`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BhavaAfflictionBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Bhava\": 1,\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhavaAfflictionBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhavaAfflictionBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction for affliction or distress affecting a specific house bhava.\n\n**Signature:** `BhavaAfflictionBySaturn(intbhava,Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `bhava` (`Int32`): The house number to evaluate.\n- `t` (`Time`): The time of calculation."
          },
          "response": []
        },
        {
          "name": "BhavaDigBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhavaDigBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhavaDigBala"
              ]
            },
            "description": "Calculates Bhava Dig Bala the strength a house receives based on the type of sign containing its midpoint. The method checks the midpoint longitude of every house maps that midpoint into a sign group applies the corresponding directional subtraction rule folds large differences back into the 06 range multiplies the final difference by 10.\n\n**Signature:** `BhavaDigBala(Timetime)`  \n**Returns:** `HouseSubStrength`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BhavaDrishtiBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhavaDrishtiBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhavaDrishtiBala"
              ]
            },
            "description": "Calculates Bhava Drishti Bala the aspect strength received by each house. The method determines whether each of the seven classical planets contributes a positive or negative influence treats Mercury as a full benefic for this specific Bhava Drishti Bala calculation calculates each planets aspect value toward every house midpoint adds special aspect strength where applicable reduces the aspect value for planets other than Jupiter and Mercury combines all planetary contributions into one score per house.\n\n**Signature:** `BhavaDrishtiBala(Timetime)`  \n**Returns:** `HouseSubStrength`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "BhavaImprovementBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Bhava\": 1,\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhavaImprovementBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhavaImprovementBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction for improvement or benefit affecting a specific house bhava.\n\n**Signature:** `BhavaImprovementBySaturn(intbhava,Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `bhava` (`Int32`): The house number to evaluate.\n- `t` (`Time`): The time of calculation."
          },
          "response": []
        },
        {
          "name": "BhinnashtakavargaChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BhinnashtakavargaChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BhinnashtakavargaChart"
              ]
            },
            "description": "Seven different charts are thus possible for the seven different planets. These are called as Bhinnashtakavargas. The position of each planet in the natal chart is of primary consideration.\n\n**Signature:** `BhinnashtakavargaChart(TimebirthTime)`  \n**Returns:** `Bhinnashtakavarga`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "BirthNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BirthNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BirthNumber"
              ]
            },
            "description": "Numerology Your birth number denotes your ruling power the structure of the body and the character depend on that number. The birth number denotes a persons status and desires. let us take it as 17101931. Number 17 becomes 17 8. So 8 is your Birth number.\n\n**Signature:** `BirthNumber(TimebirthTime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "BirthVarna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BirthVarna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BirthVarna"
              ]
            },
            "description": "Calculates the natives birth Varna from the Moon sign. The method gets the Moons Rasi sign at birth maps that sign to one of the traditional Varna groups returns the matching Varna.\n\n**Signature:** `BirthVarna(TimebirthTime)`  \n**Returns:** `Varna`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time to evaluate."
          },
          "response": []
        },
        {
          "name": "BirthYamaPanchaPakshi",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BirthYamaPanchaPakshi",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BirthYamaPanchaPakshi"
              ]
            },
            "description": "Calculates which of the five yamas equal time divisions a given moment falls into under the Pancha Pakshi system. Splits the relevant span daytime sunrisetosunset or the night span either side of it into five equal parts and returns the yama index 1 to 5 together with the exact start and end times of that yama. Used as a building block for Pancha Pakshi bird activity.\n\n**Signature:** `BirthYamaPanchaPakshi(Timet)`  \n**Returns:** `BirthYama`\n\n**Parameters**\n- `t` (`Time`): The time to locate within the day or night yama cycle."
          },
          "response": []
        },
        {
          "name": "BrotherAfflictionBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BrotherAfflictionBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BrotherAfflictionBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction for trouble or affliction involving a brother.\n\n**Signature:** `BrotherAfflictionBySaturn(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "BrotherProsperityByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/BrotherProsperityByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "BrotherProsperityByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction for a brothers prosperity or improvement.\n\n**Signature:** `BrotherProsperityByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "CalculateAshtamangalaNumberFromShells",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LeftPile\": 10,\n  \"CenterPile\": 10,\n  \"RightPile\": 10,\n  \"TotalShells\": 30\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CalculateAshtamangalaNumberFromShells",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CalculateAshtamangalaNumberFromShells"
              ]
            },
            "description": "Computes the Ashtamangala Number used in cowrieshell Ashtamangala Prasna divination. Supports both the original 108shell system and the reduced 9shell system selected by totalShells turning the three counted piles of shells into a threedigit number whose digits each range 1 to 8. The resulting number feeds Chapter7PrashnaMargaPredictions for interpretation.\n\n**Signature:** `CalculateAshtamangalaNumberFromShells(intleftPile,intcenterPile,intrightPile,inttotalShells)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `leftPile` (`Int32`): Shells counted into the left pile.\n- `centerPile` (`Int32`): Shells counted into the center pile.\n- `rightPile` (`Int32`): Shells counted into the right pile.\n- `totalShells` (`Int32`): Total shells used 108 for the original system or 9 for the reduced system."
          },
          "response": []
        },
        {
          "name": "CalculateEarthquakeRiskScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CalculateEarthquakeRiskScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CalculateEarthquakeRiskScore"
              ]
            },
            "description": "Calculates weighted earthquake risk score 035 scale. Weight 3 Critical max 12 points Eclipse MoonMercury exact JupiterSaturn aspect Weight 2 Strong max 14 points NewFull Moon planetary Kendras clustering Weight 1 Supporting max 9 points Sign positions nakshatras Moon perigee Based on frequency of appearance in BV Ramans 200 historical earthquake charts. Maximum possible score 35 if every indicator fires simultaneously. In practice scores above 12 are extremely rare. Risk levels Score 8 HIGH RISK critical mass of indicators Score 47 MODERATE RISK several supporting indicators Score 03 LOW RISK few or no indicators\n\n**Signature:** `CalculateEarthquakeRiskScore(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "CalculateShoolaDasa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"StartingHouse\": 1,\n  \"AntardasaMode\": \"DasaSign\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CalculateShoolaDasa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CalculateShoolaDasa"
              ]
            },
            "description": "Builds twelve consecutive nineyear Shoola mahadasas and twelve equal consecutive antardasas per mahadasa.\n\n**Signature:** `CalculateShoolaDasa(Timetime,intstartingHouse,ZodiacNameresolvedStartSign,ShoolaAntardasaModeantardasaMode)`  \n**Returns:** `ShoolaChakraResult`\n\n**Parameters**\n- `time` (`Time`): \n- `startingHouse` (`Int32`): \n- `resolvedStartSign` (`Nullable<ZodiacName>`): Optional override for the result of the shared JHora strongeroppositesign table FUN_004AB810FUN_004AB890.\n- `antardasaMode` (`ShoolaAntardasaMode`):"
          },
          "response": []
        },
        {
          "name": "CalculateSudarsanaChakraDasa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CalculateSudarsanaChakraDasa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CalculateSudarsanaChakraDasa"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `CalculateSudarsanaChakraDasa(Timetime)`  \n**Returns:** `SudarsanaChakraResult`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "CalculateTripatakiChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ObjectGroup\": \"Planets\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CalculateTripatakiChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CalculateTripatakiChakra"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `CalculateTripatakiChakra(Timetime,TripatakiObjectGroupobjectGroup)`  \n**Returns:** `TripatakiChakraResult`\n\n**Parameters**\n- `time` (`Time`): \n- `objectGroup` (`TripatakiObjectGroup`):"
          },
          "response": []
        },
        {
          "name": "CareerLossBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CareerLossBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CareerLossBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction related to career setbacks loss or professional difficulty.\n\n**Signature:** `CareerLossBySaturn(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chandrabala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Person\": {\n    \"PersonId\": \"postman-sample-person\",\n    \"Name\": \"Jane Doe\",\n    \"Notes\": \"Generated Postman sample\",\n    \"BirthTime\": {\n      \"StdTime\": \"14:20 16/10/1918 +05:30\",\n      \"Location\": {\n        \"Name\": \"Bangalore, India\",\n        \"Longitude\": 77.5946,\n        \"Latitude\": 12.9716\n      }\n    },\n    \"Gender\": \"Female\",\n    \"OwnerId\": \"101\",\n    \"LifeEventList\": []\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chandrabala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chandrabala"
              ]
            },
            "description": "Calculates Chandrabala the Moon strength used in personal Muhurtha. The method gets the Moon sign at the selected time gets the persons birth Moon sign counts from the birth Moon sign to the current Moon sign returns the resulting sign distance.\n\n**Signature:** `Chandrabala(Timetime,Personperson)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The Muhurtha or event time to evaluate.\n- `person` (`Person`): The person whose birth Moon sign is used as the reference."
          },
          "response": []
        },
        {
          "name": "ChandraKalanalaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChandraKalanalaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChandraKalanalaChakra"
              ]
            },
            "description": "Runs the eclipse facility exposed by JHoras Chandra Kalanala tab. The recovered dispatcher has three modes global lunar eclipse global solar eclipse and locationspecific solar eclipse.\n\n**Signature:** `ChandraKalanalaChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "Chapter10PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter10PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter10PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 10 Timing Death Implements Maraka planet identification DasaAntardasa evil periods Kalachakra Dasa junctions Niryana deathtransit Rasis for SaturnJupiterSunMoon Pramana Gulika Ashtakavarga selection of the critical Niryana Rasi Marana Lagna deathdealing ascendant and Prasnabased timing of death. ETHICAL NOTE This chapter identifies windows of elevated risk not certainties. Use only when directly relevant hospitalised patient welfare assessment of missing person and never volunteer death predictions unsolicited. A multilayer convergence of Dasa transit Ashtakavarga and Prasna factors is the only basis for a strong conclusion. Disagreement among layers indicates danger present but not conclusive.\n\n**Signature:** `Chapter10PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter11PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter11PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter11PrashnaMargaPredictions"
              ]
            },
            "description": "Generates Prasna Marga Chapter 11 predictions on the nature and cause of death. Analyses the 8th house the 22nd Drekkana lord the Navamsa of Mandi Gulika signbased Doshas organ correlations and environmental omens at the query time to describe the likely nature cause and circumstances of death. Source Prasna Marga Chapter XI.\n\n**Signature:** `Chapter11PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time of the person.\n- `queryTime` (`Time`): Time of the Prasna horary query moment."
          },
          "response": []
        },
        {
          "name": "Chapter12PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter12PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter12PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 12 Diagnosis and Classification of Diseases Roga Prasna SOURCE Prasna Marga Chapter XII Stanzas 179 WHAT THIS METHOD COMPUTES BLOCK 1 General Health Status Stanzas 15 77 Malefics in houses other than 3 and 11 indicate disease planets in 6 8 12 identify the specific affliction. BLOCK 2 Disease Classification Nija vs Agantuka Stanzas 1824 Nija Sarirotha bodily VataPittaKaphaSannipatha Chittotha mental 5th8th lord relationship Agantuka Drishtanimittaja 6th house curses falls Adrishtanimittaja evil spirits Badhaka BLOCK 3 Tridosha Determination Stanzas 4 1015 Which humour is afflicted per the dustha planet. Two systems Varahamihira Stanza 4 and Sarasangraha Stanza 11. BLOCK 4 Dhatu Body Tissue Affected Stanzas 3 16 Sunbone Moonblood Marsmuscle Mercuryskin Jupiterfat Venusspermovum Saturnnerves. BLOCK 5 Season of Disease Onset Stanza 12 Each planet rules a Ritu disease appears in the season of the dustha planet Venusspring SunMarssummer Moonrainy Mercuryautumn Jupiterfall Saturnwinter. BLOCK 6 Dietary Remedies Six Tastes Shadrasas Stanzas 2729 MadhuraAmlaLavana remove Vata ThikthaUshnaKashaya remove Kapha Pitta is destroyed by Madhura Thiktha Kashaya. BLOCK 7 Madness Unmada Stanzas 3132 4649 Eight classical yogas for lunacy causes by house analysis treatment notes. BLOCK 8 Epilepsy Apasmara Stanzas 5057 Saturn in 8th malefics in trines SunMars in 12th twelve classical forms enumerated. BLOCK 9 Bhakta Virodha Anorexia Stanza 63 Malefics aspect Lagna Saturn aspects 8th weak 8th lord. BLOCK 10 Diabetes Madhumeha Stanza 64 Malefics aspect Lagna Lagna lord debilitatedenemy Venus occupies or aspects 8th. BLOCK 11 Diseases by Dustha Planet Stanzas 6774 Full classical catalogue per planet Sun through Gulika. BLOCK 12 Specific Planetary Combinations Stanza 75 Saturn in 10th GulikaRahu in Lagna8th Mars positions etc. BLOCK 13 Body Part Organ Affected Stanza 78 Limbs typified by signs aspected or occupied by malefics.\n\n**Signature:** `Chapter12PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter13PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"FirstLetterOfQuery\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter13PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter13PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 13 Timing of Illness Onset and Recovery Roga Kala Prasna SOURCE Prasna Marga Chapter XIII Stanzas 139 WHAT THIS METHOD COMPUTES BLOCK 1 ONSET NAKSHATRAS Stanzas 13 89 Stanza 1 Onset nakshatra from MoonLagna nakshatra distance method Stanza 2 Onset nakshatras from Mandi 9 Mandi 12 MoonMandi Stanza 3 Onset via mostmalefic planet transiting the sign of the querys first letter Stanza 8 Day vs. night onset lordoccupant of 6th diurnal vs. nocturnal Stanza 9 Duration in months three calculation methods via 6th lord BLOCK 2 DIRECTION OF ILLNESS Stanzas 46 Stanza 4 Direction faced by querent place of first attack Stanza 5 Direction number from East yamas from sunrise when illness began Stanza 6 Number of companions number of attendants at the sickbed BLOCK 3 DISEASE DURATION FROM 6TH LORD Stanza 7 Expired portion of 6th lords sign half long illness half near recovery BLOCK 4 RECOVERY INDICATORS Stanzas 1015 2728 Stanza 10 Disease began when Moon was in sign of 6th lord recovery when Moon enters 4th lords sign Stanza 11 Last malefic affliction of LagnalordMoon onset benefic contact recovery Stanza 12 Moon entering Lagna Rasi Navamsa Dwadasamsa Gulikas sign subsidence Stanza 13 Ashtama Rasi nakshatras relief after Moon exits that group Stanza 15 Worst dustha planets sign onset best sustha planets sign recovery Stanza 27 Full Moon in Lagna with Jupiter JupiterVenus in Kendras recovery Stanza 28 Moon in Upachayas with benefics in good places or Lagna aspected by benefics recovery BLOCK 5 RECOVERY TIMELINE BY ONSET NAKSHATRA Stanzas 1617 Specific recovery windows days mapped to each of the 27 onset nakshatras BLOCK 6 DEATH INDICATORS Stanzas 1822 Stanza 18 Fatal combo AshtamiParvaRiktha malefic weekday trijanmaVipatPratyakNaidhana Stanzas 1920 Soola Chakra fatal worsening recovery zones around Suns nakshatra Stanza 21 All coincident factors death certain Stanza 22 Child formula for patients under 12 Janmaonset distance 3 4 BLOCK 7 RECOVERY SPEED AND DIFFICULTY Stanzas 2324 Stanza 23 6th lord speed and sign quality fast or slow recovery Stanza 24 Malefichemmed Lagna weak lord waning Moon in 6812 prolonged or fatal BLOCK 8 CAUSES AND REMEDIES Stanzas 2639 Stanza 26 Two root causes Drishta physical and Adrishta karmic Stanza 29 Diseases as pastbirth karma remedy medicine gifts japa homa worship Stanzas 3135 Deity wrath from malefics in anishta places Karma Vipaka remedies Stanzas 3639 Mrityunjaya Homa universal panacea 8000 Japa for severe illness summary\n\n**Signature:** `Chapter13PrashnaMargaPredictions(TimebirthTime,TimequeryTime,stringfirstLetterOfQuery)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`): \n- `firstLetterOfQuery` (`String`):"
          },
          "response": []
        },
        {
          "name": "Chapter14PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter14PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter14PrashnaMargaPredictions"
              ]
            },
            "description": "Generates Prasna Marga Chapter 14 predictions on house interpretation and the timing of events. Synthesises houselord and karaka dispositions allbhava strength bhava ruin periods the effects of malefics and benefics in each house Gulika and tertiaryplanet effects event fructification timing karma analysis and imprisonment indicators. Source Prasna Marga Chapter XIV.\n\n**Signature:** `Chapter14PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time of the person.\n- `queryTime` (`Time`): Time of the Prasna horary query moment."
          },
          "response": []
        },
        {
          "name": "Chapter15PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter15PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter15PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 15 Causes of Misery and Remedial Measures SOURCE Prasna Marga Chapter XV Stanzas 1120 OVERVIEW This chapter identifies the eleven root causes of human suffering and provides a complete diagnostic and remedial framework. WHAT THIS METHOD COMPUTES BLOCK 1 KARMA NATURE Stanzas 13 Jupiters disposition favorable or unfavorable destiny. Eleven enumerated causes of misery. BLOCK 2 PLANETARY DEITY MAPPINGS Stanzas 47 Which deity is signified by each planetsignDrekkana SunShivaSubrahmanyaGanesha MoonDurgaBhadrakaliChamundi MarsSubrahmanyaBhairava or ChamundiBhadrakali MercuryVishnu AvatarasKrishna JupiterVishnu VenusAnnapoornaLakshmiYakshi SaturnSasthaKiratha RahuSerpent God. SatwicRajasicTamasic nature of deity determined from sign. BLOCK 3 BADHAKA HOUSE OF HARM Stanzas 110112 Movable Lagna 11th house is Badhakasthana. Fixed Lagna 9th house is Badhakasthana. Common Lagna 7th house is Badhakasthana. BLOCK 4 IDENTIFY THE ANGRY PLANET Stanzas 89 Lord of Badhakasthana in a dusthana 6812 primary angry planet. Angry planets deity the offended deity. BLOCK 5 KARMA SOURCE NATURE DIAGNOSIS Stanzas 101105 Reference point for evil Karma Benefics in 6812 malefics in kendrastrines from Chatra Rasi divine wrath. Same from Arudha Brahmins curse. Same from Moon enemy black magic. Same from Lagna peoples hatred. Dridha deliberate vs Adridha accidental Karma indicator in Moons sign Dridha. Karma type malefic in 5th mental 2nd verbal 10th bodily. BLOCK 6 TEMPLE IDOL CONDITION Stanzas 1011 Malefic in 12th from angry planet idol disfigured. GulikaRahu joining idol polluted by Dundubha. Saturn joining temple worn outpolluted. Mars joining temple guards in dissension. Angry planet in Lagna Mars idol broken Saturn idol dirty. Angry planet in 4th house temple very old needs repairs. BLOCK 7 PALLIATIVES BY ANGRY PLANETS HOUSE POSITION Stanzas 1214 1stPratibimbadana 2ndJapa 3rdPuja 4thTemple construction 5thSantarpana feeding 6thPratheekara Bali 7thDivine dance Nrithya 8thBali 9thDevopasana 10thDantiskandha 11thTarpana 12thno harm. Also angry planet in MarsSun signs illumination MoonVenus signs milkgheepayasa Mercury sign sandal paste Jupiter sign garlands Saturn sign ornamentsdress. Badhaka in 8th10th pujaBali 12th musicdrums. BLOCK 8 PLANETSPECIFIC REMEDIES Stanzas 1518 Sun angry Devaradhana divine worship. Moon angry Sankabhisheka free ricewater distribution. Mars angry illumination and havanas. Mercury angry dance before deity. Jupiter angry homas and feeding Brahmins. Venus angry liberal feeding of all. Saturn angry feeding of backwardpoor classes. BLOCK 9 FAVORED DEITY NEGLECTED WORSHIP Stanza 19 Planet with benefic in Lagna favoring deity. Lord of 9th in harm house neglected worship. BLOCK 10 MISAPPROPRIATION OF DEITYS PROPERTY Stanzas 2021 Lord of harm house in 2nd or 11th misappropriation. Lagna movable Dhatu minerals taken fixed Moola plantsland common Jeeva living beings. BLOCK 11 INTENSITY OF DEITYS WRATH Stanzas 2830 Lord of harm in 4th or lord of 4th in harm house or crosssign occupancy active wrath. Sun Moon in harm house anger of family deities. BLOCK 12 ANGER OF THE SERPENT GOD Stanzas 3132 38 Jupiter as lord of harm in 6812 in kendras of Rahu superior serpents angry. Jupiter in kendras of Gulika inferior serpents. Rahu in harm house serpent trouble with Sun good serpents with Moon bad ones. Rahu remedies by house 6810harm Sarpa Bali 4th Chitra Kuta stone 12th singing Lagna milk siddhapayasa 7th devotional music. Gulika alone in Rahus kendra serpent abodes unclean. Saturn Gulika in kendras purify surroundings with trees and rites. BLOCK 13 PARENTAL CURSES Stanzas 3940 SunMoon in harm house in Mars signNavamsa fathersmothers curse. Malefic in LeoCancer in unfavorable house same. Evil planet in harm house Jupiters sign BrahminDeva curse Purva Sapa. Harm house Leo or Sun present ancestors curse Mars as evil planet very intense. BLOCK 14 CURSES OF ELDERS AND PRECEPTORS Stanza 41 Lord of 6th in 9th OR lord of 9th in 12th fatherpreceptorelder displeased. Sun in 6th or conjoining 6th lord fathers displeasure. Moon similarly mothers displeasure. BLOCK 15 TROUBLES FROM GHOSTS PRETAS Stanzas 4250 Gulika in harm house ghost trouble. Gulika Mars connection unnatural death fireweaponsdisease. Gulika Saturn died in miserypenury abroad. Gulika Rahu serpent bite death. Gulika evil in watery sign drowned. Sex of Preta from oddeven sign and Navamsa of Gulika. Caste of Preta from sign lords caste. Remedy Shraddhas kshetra pindas tilavahana feeding Brahmins. BLOCK 16 EVIL EYE DRISHTI BADHA Stanzas 5154 115120 Lord of harm aspecting Lagna or lord of Lagna Drishti Badha. Lord of 7th in harm house or lords mutually joinedaspecting Drishti Badha. Movable Lagna evil in Lagna Mars in 7th affliction from Devatas. Nonbenefics in Lagna Saturn in 7th Moon aspected by malefics Pisachas. Intent of Devata harm lord friendly with Lagna lord enjoyment inimical destruction neutral eatingdrinking. BLOCK 17 SPIRITS CATALOGUE Stanzas 6065 18 Mahagrahas Amara Asura Naga Yaksha Gandharva Rakshasa Heydra Kasmala Nistheja Bhasmaka Pitris Krisa Vinayaka Pralapa Pisacha Anthyaja Yonija Bhuta. 9 Laghu Grahas Apasmara Brahmana Brahma Rakshasa Kshatriya Vaisya Sudra Neecha Chandala Vyanthara. All originated from anger of Rudra categories Bali Kama Rati Kama Hanthu Kama. BLOCK 18 OVERALL SYNTHESIS AND RECOMMENDED REMEDIES\n\n**Signature:** `Chapter15PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter16PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"FirstLetterOfQuery\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter16PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter16PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 16 Miscellaneous Queries Final Chapter of Part I SOURCE Prasna Marga Chapter XVI Stanzas 1125 WHAT THIS METHOD COMPUTES BLOCK 1 WHEREABOUTS OF THE QUERIST Stanzas 17 Arudha Lagna sign quality movablefixedcommon distance from home Navamsa of Arudha Lagna living conditions of the absent person Planets in Arudha aspects what they encountered on the journey BLOCK 2 BRIGHT AND DARK FUTURE Stanzas 810 LibraPisces births beneficsmalefics in 6 houses from 4th future 6 houses from 10th past AriesVirgo births houses 410 past houses 104 future BLOCK 3 FOUR MEANS OF ACHIEVING OBJECTIVES Stanzas 1112 Jupiter Venus Sama gentle persuasion Moon Dana bribery gifts Saturn Rahu Mercury Bheda intimidation division Sun Mars Danda force war Determined by the strongest planet in Lagna Upachayas 361011 or Kendras BLOCK 4 TREASURE IN THE HOUSE referenced section Sign of Arudha and planets aspectingoccupying it reveal direction and depth of buried treasure element of sign gives material BLOCK 5 FIRST LETTER OF QUERY DEITY Stanza 42 Letter number modulo 9 mapped to planet ruling deity disease cause BLOCK 6 PREDICTING BY BETEL LEAVES THAMBOOLA LAGNA Stanzas 4750 Formula 2 leafCount 5 1 mod 7 remainder weekday planet Sign of that planet in Prasna chart Thamboola Lagna Housebyhouse leaf quality Bhava prosperity affliction Thamboola Lagna planet immediate prediction BLOCK 7 PERFORMING PARENTAL OBSEQUIES Stanzas 5560 Sun and 9th lord wellplaced obsequies completed successfully Affliction signals Sun combustdebilitated 9th lord in 6812 obstacles Venus in good position grateful children BLOCK 8 ACQUISITION OF POWER Stanzas 7880 Nakshatras of Sun Moon Mars Lagna lord 10th lord at query time 34 falling in Indra Nirithi Varuna direction groups imminent headship BLOCK 9 KALACHAKRA YOGINI AND MRITYU Stanzas 8192 28nakshatra timecycle diagram including Abhijit Prana count from Suns nak pos 1 to Moons nak Deha count from Janma nak to Prana position Mrityu count from Krittika pos 28 anticlockwise to query nak All three on same linepole death same pole DehaMrityu prolonged illness BLOCK 10 KANTAKASTHUNA RAKTASTHUNA STUNA Hell and Heaven Stanzas 116120 Kantakasthuna count from Suns nak to Moola same count from Moola star Raktasthuna Mars longitude subtracted from 138 position Stuna kantaka star sthuna star mod 27 count from Moola If these three afflict Lagna or Arudha hell life equivalent to death BLOCK 11 YUGA LONGEVITY SYSTEM Stanzas 122125 Krita Yuga signs Aries Leo Sagittarius full Dasa years Treta Yuga signs Taurus Virgo Capricorn half Dasa years Dwapara Yuga signs Gemini Libra Aquarius quarter Dasa years Kali Yuga signs Cancer Scorpio Pisces oneeighth Dasa years Apply to both Rasi and Navamsa of each planet for proportionate longevity\n\n**Signature:** `Chapter16PrashnaMargaPredictions(TimebirthTime,TimequeryTime,intthamBoolaLeafCount,stringfirstLetterOfQuery)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`): \n- `thamBoolaLeafCount` (`Nullable<Int32>`): \n- `firstLetterOfQuery` (`String`):"
          },
          "response": []
        },
        {
          "name": "Chapter17PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter17PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter17PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 17 Vivaha Prasna Marriage Query SOURCE Prasna Marga Chapter XVII Stanzas 142 WHAT THIS METHOD COMPUTES BLOCK 1 MARRIAGE POSSIBILITY Stanzas 712 LagnaArudha7th house analysis malefic vs. benefic balance whether marriage negotiations will succeed or break down. BLOCK 2 DEATH OF THE COUPLE Stanzas 1718 Moon afflicted in 6th8th 8th year additionally Mars in 6th8th from Moon 9th year MoonMars in 7th 7th month. BLOCK 3 YAMA SUKRA ANALYSIS Stanza 19 Calculates Yama Sukra lagna at weekdayspecific ghati after sunrise flags dusthana placement and Yoga Sphuta affliction. BLOCK 4 EARLY MARRIAGE INDICATORS Stanzas 2732 Moon in Upachaya with benefic aspect VenusMoon in Lagna or 7th MercuryVenusJupiter in kendras female DrekkanaNavamsa aspected by MoonVenus benefics in 1st2nd7th full Stanza 32 horary happiness check. BLOCK 5 QUALITY OF WIFE Stanzas 2332 JupiterVenus in 7th owncaste wife strength of 7th lord Venus devoted chaste or vicious wife combinations beautiful bride kendrastrikonas benefic RahuKetu in 7th warnings. BLOCK 6 TIMING OF MARRIAGE Stanzas 5865 Early middle age after prime of youth logic parvatamsa and mridwamsa checks for preyouth marriage JupiterSunMoon transit triggers. BLOCK 7 CHANDRABHILASHA SPHUTA Stanza 41 Full calculation Moonminutes 800 remainder a Chandrabhilasha sign floora3200 Chandravela sign union of all four transit windows for the wedding date. BLOCK 8 SPOUSE DESCRIPTION Stanzas 2021 Physical complexion nature and caste from the stronger of the 7th lord its signNavamsa lord and Venus. BLOCK 9 HORARY OMENS GUIDE Stanzas 2026 Reference table of classical nimittas auspicious inauspicious signs for the astrologer to verify at query time.\n\n**Signature:** `Chapter17PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter18PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter18PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter18PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 18 Santhathi Prasna Children Comprehensive implementation covering the principles of predicting the birth of children pregnancy Garbha Prasna sex of the child adoption curses and Santana Tithi calculations.\n\n**Signature:** `Chapter18PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter19PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter19PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter19PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 19 Issues According to Birth Horoscope SOURCE Prasna Marga Chapter XIX Stanzas 130 and companion stanzas 147155 WHAT THIS METHOD COMPUTES BLOCK 1 MOON ANALYSIS Stanza 2 Moon in Upachaya vs. Anupachaya with benefic aspect fertility outlook. Crosschart husbandwife comparison when partnerBirthTime is supplied. BLOCK 2 BEEJA SPHUTA MALE FERTILITY Stanzas 46 11 Method A Stanza 5 ghati method contribution of each planet expired arc in nakshatra 27 equivalent to 5 30 on the ghatis Method B Stanza 11 direct sum Sun Venus Jupiter longitudes Strength test Stanza 6 Beeja strong if in odd sign odd Navamsa benefic contact. BLOCK 3 KSHETRA SPHUTA FEMALE FERTILITY Stanzas 4 7 11 Method A Moon Mars Jupiter contributions same ghati formula as Beeja. Method B Moon Mars Jupiter direct longitudes. Strength test Stanza 7 Kshetra strong if in even sign even Navamsa benefic contact. BLOCK 4 AFFLICTION DIAGNOSIS Stanza 8 Rahu serpentgod curse Gulika Preta trouble Saturn pastlife sin Mars enemydeity trouble. BLOCK 5 CHILDLESSNESS AND LOSS YOGAS Stanzas 816 10 classical combinations from Stanzas 816. BLOCK 6 CHILDREN BIRTH YOGAS Stanzas 1720 6 positive combinations for birth of children. BLOCK 7 SANTANA GRAHA SPHUTAS Stanza 18 Each Santana Sphuta planet longitude 5 mod 360. Santana Trisphuta Santana Sun Santana Moon Santana Jupiter mod 360. Checked against 3rd5th7th nakshatra from Janma 88th108th pada 6812 from Lagna. BLOCK 8 SANTANA YOGA SPHUTA Stanzas 147150 Formula Santana Jupiter Yamakantaka 9 mod 360. Number of children floordegreesinsign 5. Jupiter controlling 3 vargas more than 6 sons. Drekkana lord debilitatedenemy which child dies Stanza 149. Mercury Saturn in 3 vargas twins Stanza 150. BLOCK 9 DATTA SPHUTA ADOPTION Stanza 151 Mercury Saturn FifthLord 5 mod 360. Solar odd Rasi Lunar even Navamsa malefic contact adoption. BLOCK 10 TIMING AND SEX Stanzas 153155 Sex of child from Navamsa of Yoga Sphuta odd male even female. Birth timing Santana Guru Yamakantaka Santana Gulika 81 nakshatra. Moon transiting that nakshatra or trines time of birth.\n\n**Signature:** `Chapter19PrashnaMargaPredictions(TimebirthTime,TimepartnerBirthTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `partnerBirthTime` (`Nullable<Time>`):"
          },
          "response": []
        },
        {
          "name": "Chapter20PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter20PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter20PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 20 Seventh House According to Birth Horoscope Spouse Analysis SOURCE Prasna Marga Chapter XX Stanzas 166 OVERVIEW This chapter analyses the natal birth chart to reveal all aspects of the spouse character appearance career longevity and the timing of marriage. It is the horoscopic complement to Chapter XVII Vivaha Prasna which uses the horary chart. Per Stanza 1 when Jataka natal and Prasna agree predictions gain great accuracy. WHAT THIS METHOD COMPUTES BLOCK 1 MARRIAGE POSSIBILITY Stanza 6 7th house affliction indicators probabilities of no marriage or shortlived spouse. BLOCK 2 CHARACTER OF WIFE FROM 7TH HOUSE SIGN Stanzas 45 The 12 signbased character descriptions for the wife. BLOCK 3 DEATH OF WIFE YOGAS Stanzas 716 Stanza 7 MarsSaturnspecific signplanet in 7th wife dies or separation. Stanza 8 Saturn in Pisces 7th Jupiter in Virgo 7th strong malefic in 4th 8th5th lord in 7th SunVenus in 579 wife defective of limbs. Stanza 9 Venus hemmed by malefics danger SunRahu in 7th wasteful. Stanzas 1012 Venus in MarsSaturn sign or Navamsa wifes character. Stanza 13 Venus Ashtakavarga 7th from Venus dominated by malefics Gulika in trine wife dies soon. Stanza 14 Venus in MarsSun sign wife dies by fire. Stanza 15 Venus Mandi Rahu in trinekendra snakebite death. Stanza 16 Venus Saturn malefic in 8th from Venus unnatural death death mode from quadrupedalbirdwatery sign. BLOCK 4 NATURE OF WIFE FROM VENUS CONJUNCTIONS Stanzas 1718 Stanza 17 VenusSun bhutaafflicted but distinguished VenusMoon superior VenusMars Rakshasaafflicted has paramour VenusJupiter virtuous VenusMercury educated handsome. Stanza 18 VenusSaturn Gandharva trouble deceptive VenusRahuKetu low company limb defect VenusGulika sudden accidental death. BLOCK 5 WIFES NATURE FROM VENUS ASHTAKAVARGA Stanza 19 Bindu contributor in 7th from Lagna in Venus Ashtakavarga specific quality. BLOCK 6 PHYSICAL DESCRIPTION AND CASTE OF WIFE Stanzas 2021 Strongest of lord of sign of 7th lord Navamsa lord of 7th lord and Venus appearance. Jupiter or Venus in 7th owncaste wife. BLOCK 7 QUALITY YOGAS FOR THE WIFE Stanzas 2232 Stanza 22 Benefic in 9th from Venus strong 9th lord spiritual lucky. Stanza 23 7th lord benefic beneficaspected loved by husband and children. Stanza 24 7th occupiedaspected by lord or benefics Venus welldisposed good wife. Stanza 25 7th lord strong rich family weak poor family. Stanza 26 7th lord withaspected byhemmed between benefics good wife. Stanza 27 7th lordVenus in benefic signNavamsa strong 10th lord good qualities. Stanza 28 7thlordVenus strong Jupiter aspect devoted wife. Stanza 29 7th lordSun aspected by VenusMercury 7th lord with Jupiter chaste. Stanza 30 7th lord in kendra benefic aspectsignNavamsa paragon of chastity. Stanza 31 7th lordSun in malefic sign malefic Navamsa inclined to vice. Stanza 32 RahuKetu in 7th malefic aspect malefic Navamsa sinful wife. BLOCK 8 HUSBANDS TENDENCIES Stanza 33 Planets in 7th reveal the husbands erotic inclinations. BLOCK 9 SOCIAL STANDING OF WIFES FAMILY Stanzas 3436 Stanza 34 Lagna7th lords friends wifes family friendly enemies inimical. Stanza 35 Lagna lord very strong 7th lord in benefic Navamsa highborn family. Stanza 36 Lagna lord weak 7th lord combustinimicaldebilitated lower family. BLOCK 10 MULTIPLE WIVES REMARRIAGE YOGAS Stanzas 3746 Full enumeration of 10 classical yogas for 2 3 or many wives. BLOCK 11 WIFES BIRTH STAR Nakshatra THREE METHODS Stanzas 4749 Stanza 47 Compatible Janma Rasis from 7 indicators. Stanza 48 Moons Chandra Kaksha lord sign Lagna lord sign. Stanza 49 Three Nakshatra calculations from planetary longitude sums. BLOCK 12 DIRECTION FROM WHICH WIFE COMES Stanzas 5052 13 directional indicators from 7th lord Venus and aspectors. Distance farnearintermediate from sign quality Stanza 52. BLOCK 13 TIMING OF MARRIAGE Stanzas 6566 Stanza 65 DasaBhukti of 7th house occupant aspector 7th lord sign lord of 7th lord Navamsa lord of 7th lord Venus Moon Navamsa lord of Lagna Rahus Dasa also recognised. Stanza 66 Transit of VenusLagna lord7th lord over 7th or its trines Jupiters transit of 7th lords sign or its Navamsa.\n\n**Signature:** `Chapter20PrashnaMargaPredictions(TimebirthTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter23PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter23PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter23PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 23 Vrishti Prasna Queries regarding Rain Comprehensive implementation covering the probability of rain quantity timing and nature windystormy based on Arudha Lagna and planetary positions.\n\n**Signature:** `Chapter23PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter24PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter24PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter24PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 24 Raja Prasna Yuddha Prasna Queries on Rulers and War Comprehensive implementation covering the future of the government soldiers fate enemy invasion peace treaties and war outcomes.\n\n**Signature:** `Chapter24PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter25PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"FirstLetterOfQuery\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter25PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter25PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 25 Vrishti Prasna Rainfall Prediction SOURCE Prasna Marga Chapter XXV Stanzas 197 WHAT THIS METHOD COMPUTES BLOCK 1 PLANETARY COMBINATIONS FOR HEAVY RAINFALL Stanzas 15 Solar ingress into Gemini conditions SunMoonMarsSaturnRahu in watery signs MercuryVenus conjoin fixed sign triple conjunctions combustion combos earthy Sun watery vargas rainbow directions. BLOCK 2 MOCK SUN AND RAINBOW GUIDE Stanzas 68 Rainbow direction rules for rainy and other seasons. Pratisurya mock Sun directional effects north rain south tempest both sides flood top danger to king below calamity to people. BLOCK 3 PAKSHAWISE RAINFALL FROM LUNAR PHASE Stanzas 911 Rain on New Moon Pratipada rain in Shukla Paksha Rain on Full Moon no rain in Krishna Paksha 15 ghatikas rule on Dwiteeya Pratipada for paksha forecast. BLOCK 4 ASHADHA LUNAR MONTH SIGNIFICANCE Stanzas 1214 Northeast winds at Ashadha Full Moon evening good rain year Rain on Ashadha Krishna Chaturthi with Poorvabhadra luxuriant vegetation Weekday of Ashadha Shukla Panchami annual rain quality Sun in Aquarius Rohini tithi combinations. BLOCK 5 VENUS MANDALAS Stanzas 1620 Venuss postcombustion nakshatra determines annual rain forecast. Six Mandalas Bharanigroup through Dhanishtagroup 4th and 6th Mandalas copious rain 3rd and 5th famine 1st and 2nd below average. Moon in 7th from Venus or 5th7th9th from Saturn heavy rain Stanza 21. BLOCK 6 SEASONAL PLANETARY TRIGGERS Stanzas 2223 Combustion startend Moon conjunctions Sun in CancerCapricornAridra MercuryJupiter MercuryVenus JupiterVenus rain MarsSaturn without benefic firelightningstorm. BLOCK 7 CLOUD SHAPES AND NATURE OMENS Stanzas 2437 Classical nimitta catalogue ant eggcarrying snake behavior cattle rushing home cat scratching chameleons cocks crowing rainbow at dawndusk thunder patterns cloud colors and shapes Moon disc color honey parroteye Pratichandra mock Moon. BLOCK 8 CHAITRA AND SOLAR INGRESS Stanzas 3866 Chaitra month 1st day by weekday annual rain forecast Solar ingress into AriesCapricorn by nakshatra crop and rain outlook Solar ingress into Aries by tithi and Karana Annual forecast from lagna at Solar Ingress chart. BLOCK 9 ANNUAL NAKSHATRA MANDALA Stanzas 6871 Indra Mandala Rohini group prosperity Agni Mandala Bharani group scarcity fire Vayu Mandala Mrigasira group storms wind Varuna Mandala Aridra group copious rain. Sankramana Purusha by Karana price levels. BLOCK 10 HORARY QUERY INDICATORS NIMITTAS Stanzas 7280 Physical omens at query time querent touching water wet clothes standing near water shedding tears sighting elephantspregnant women Halo round Sun or Moon great downpour Planet pairs SunMars no rain MoonVenus heavy rain MercuryJupiter moderate rain First letter classification ghoshalong vowels rain khara no rain. BLOCK 11 HORARY CHART ANALYSIS Stanzas 8197 Moon aspected by beneficmalefic MoonMercuryJupiterVenus in kendra aspected by benefics floods ArudhaChatra in watery sign with watery planet heavy rain 4th underground water 7th rivers 10th rain from sky Mercury associationaspect winds disperse rain MarsMercurySaturnRahu in kendras storms MoonVenus in watery Lagna Prishtodaya triple RahuSaturn in water signs Full classification of watery signs and aquatic planets. BLOCK 12 OVERALL SYNTHESIS Weighted count of positivenegative indicators verdict.\n\n**Signature:** `Chapter25PrashnaMargaPredictions(TimequeryTime,stringfirstLetterOfQuery)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`): \n- `firstLetterOfQuery` (`String`):"
          },
          "response": []
        },
        {
          "name": "Chapter26PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"FirstLetterOfQuery\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter26PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter26PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 26 Koopa Prasna WellDigging and Water Location SOURCE Prasna Marga Chapter XXVI Stanzas 170 WHAT THIS METHOD COMPUTES BLOCK 1 WATER AVAILABILITY YOGAS Stanzas 715 Thirteen specific planetary combinations that confirm underground water. Stanza 15 Single nowater indicator Moon in Taurus Rahu in Scorpio. BLOCK 2 SPRING QUANTITY Stanza 37 Moveable Lagna small spring Fixed many springs Common two springs. BLOCK 3 OLD BURIED WELL YOGAS Stanzas 3850 Twelve classical combinations indicating a submerged well in the compound. BLOCK 4 DIRECTION FROM BODY TOUCH Stanzas 1618 Observational bodytouch indicators for direction of digging. Bony spot no water Fleshy spot mirymuddy Forehead rocky. BLOCK 5 CHANDRA GUPTI CHAKRA Stanzas 2036 Four methods for locating the exact spot in the compound. Primary method Stanzas 2427 Dinarsha Udaya Nakshatra Moons Nakshatra. The 28square grid maps compass direction to the wells location. BLOCK 6 WATER TASTE Stanzas 5153 From planet inaspecting 4th house or Lagna Navamsa lord. Sunacidhot Moonsaltish Marsbitter Jupitersweet Venussour Saturnpungent Mercurymixed Rahuinsipid. BLOCK 7 VASTU PURUSHA AND COMPOUND DIVISION Stanzas 5557 Head NE of Vastu Purusha is best for wells. Compound divided into 12 signs Aquarius zone best Virgo zone forbidden. BLOCK 8 DEPTH AND WATER CHARACTER Stanzas 5865 Planets in Lagna determine depth rocksandabundance. Rasmis planetary rays measure depth in cubits halfcubits or manheights. Sun16 Moon4 Mars10 Mercury9 Jupiter7 Venus5 Saturn21 rays. Sign rays Aries7 Taurus8 Gemini12 Cancer11 Leo12 Virgo6 Libra9 Scorpio7 Sagittarius13 Capricorn7 Aquarius8 Pisces27. BLOCK 9 PLANETSIGN WATER ABUNDANCE Stanza 68 Watery planets in watery signs water at surface. Watery planets in nonwatery low water table. Nonwatery in nonwatery dry. BLOCK 10 DINARSHA Stanza 70 Expired ghatikas 28 60 Nakshatra counted from Aswini.\n\n**Signature:** `Chapter26PrashnaMargaPredictions(TimequeryTime,stringfirstLetterOfQuery)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`): \n- `firstLetterOfQuery` (`String`):"
          },
          "response": []
        },
        {
          "name": "Chapter27PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter27PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter27PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 27 Bhojana Prasna Food Meal Query and Proshithogamana Prasna Return of a Traveller. BHOJANA PRASNA Cast when someone asks about a recent meal its quality menu server codiners conversation and aftermeal rest. Each of the 12 horary houses carries a fixed meal signification Stanzas 139. PROSHITHOGAMANA PRASNA Cast when someone asks whether an absent person traveller exile person out of contact will return when and how Stanzas 4046.\n\n**Signature:** `Chapter27PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter28PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter28PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter28PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 28 Suratha Prasna Queries on Intimacy SOURCE Prasna Marga Chapter XXVIII Stanzas 119 WHAT THIS METHOD COMPUTES BLOCK 1 UNION OCCURRENCE Stanzas 12 Sun in Lagna7th or aspectingconjoining lords of 1st or 7th no union. Krishnacharya MoonVenus inaspecting 7th union. 7th beneficmalefic happy or unhappy union. BLOCK 2 CONSENT AND EMOTIONAL STATE Stanzas 23 MoonVenus Sun aspectjoin genuine passion. MoonVenus malefic not Sun aspect Lagna no real love. Moon with malefics forced union woman unwilling. Sun with malefics forced union man unwilling. BLOCK 3 PARTNER QUALITIES Stanza 4 Moon with Sun in Suns vargas man is handsome and educated. Moon withaspecting benefics in benefic vargas woman has good qualities. BLOCK 4 PARTNER IDENTITY AND AGE Stanzas 58 Planet aspecting Lagna and its dignity partner type social status caste. 7th house occupant wife another woman dancing girl etc. Moon phase age of partner. BLOCK 5 CHATHRA RASI ANALYSIS Stanza 9 Arudha Chathra wife friend sign Chathra related family enemy sign Chathra inimical family. BLOCK 6 FREQUENCY AND TIMING Stanza 10 Odd ascendant odd aspecting planet sign once. Even twice. MarsVenus vargas exclusively many times. Sun varga daytime Moon varga nighttime. BLOCK 7 INCIDENT DETAILS Stanzas 1113 MoonMars in 1579 quarrel and sleeplessness. MoonSaturn dreamt of union no actual union. MoonSun partial intimacy. MoonVenus private conversation. MoonJupiter union with accomplished woman pregnancy possible. MoonMercury another woman not wife. Mars in Lagna Saturn in 7th or vice versa fear of fire no sleep. BLOCK 8 PLACE OF UNION Stanzas 1418 From 7th house planet Saturnrepaired house Marsburnt Mercurycarpenters Moonnew Sunwooden Venusornamental Jupiterstrong. Alternative Sun in watery sign bath house Sun in other kitchen. Marskitchen Mercuryplayground SaturnSudracowshed Rahulowbornlatrine Moonpalacetemple weak Venusold house. When Lagna unaspected determined by Lagna sign itself Stanzas 1718.\n\n**Signature:** `Chapter28PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter29PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter29PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter29PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 29 Nashta Prasna Lost Article Queries Implements predictions for queries about lost or stolen articles based on horoscope analysis\n\n**Signature:** `Chapter29PrashnaMargaPredictions(TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter30PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter30PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter30PrashnaMargaPredictions"
              ]
            },
            "description": "Generates Prasna Marga Chapter 30 predictions for Nashta Jataka reconstructing an unknown birth chart. When the querent has no birth record the Prasna chart at query time is used to reverseengineer the Janma Nakshatra Janma Lagna birth Moon sign and the birth positions of Jupiter and the Sun. Several methods are provided and should be weighed against Nimittas omens the number of persons present any body part touched and the querents appearance. Source Prasna Marga Chapter XXX.\n\n**Signature:** `Chapter30PrashnaMargaPredictions(TimequeryTime,intpersonsPresent,stringbodyPartTouched)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `queryTime` (`Time`): Time of the Prasna horary query moment.\n- `personsPresent` (`Nullable<Int32>`): Optional number of persons present at the query including astrologer and client.\n- `bodyPartTouched` (`String`): Optional lowercase name of the body part touched by the querent at query time."
          },
          "response": []
        },
        {
          "name": "Chapter5PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter5PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter5PrashnaMargaPredictions"
              ]
            },
            "description": "Chapter5PrashnaMargaPredictions Prasna Marga Chapter V Mathematical Foundations SOURCE Prasna Marga Chapter V Stanzas 1750 WHAT THIS METHOD COMPUTES 1. Trisphuta Stanza 17 Lagna Moon Gulika 2. Chatusphuta Stanza 18 Trisphuta Sun 3. Panchasphuta Stanza 18 Chatusphuta Rahu 4. Pranasphuta Stanza 19 Lagna 5 Gulika primary 5. Dehasphuta Stanza 19 Moon 8 Gulika primary 6. Mrityusphuta Stanza 19 Gulika 7 Sun primary 7. Alt. Pranasphuta Stanza 2022 ghatibased research method 8. Alt. Mrityu Stanza 23 ghati weekdayoffset method 9. Kalasphuta Stanza 23 same as above subtracted 10. Sukshma TrisphutaStanza 4647 Prana Deha Mrityu summed 11. PranaDehaMrityu x9 method Stanza 44 12. Arudha Sphuta Stanza 32 Arudha Rasi start Lagna degrees 13. Stanza 48 sphuta prasna vighatikas 6 562 Gulika 14. Trisphuta Navamsa disease onset Stanza 38 15. Mrityu Nakshatra from Trisphuta Stanza 41 ALL INTERPRETIVE RULES covered Stanzas 2830 3134 CancerScorpioPisces trouble Samhara zone Stanzas 3738 planetary diseases from Trisphuta signNavamsa Stanza 40 evilgood indicators around Trisphuta Stanzas 4143 Mrityu Nakshatra SunMoon transit Panchasphuta death test Stanza 44 x9 PranaDehaMrityu aspect check Stanza 45 Navamsa triad LagnaMoonGulika Navamsas Stanza 46 Sukshma Trisphuta who is greater Mrityu in deadly nakshatra Stanza 47 planets in Sukshma Trisphuta sign family danger Stanzas 4849 additional death tests Stanza 50 longevity Srishti factors\n\n**Signature:** `Chapter5PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter7PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"AshtamangalaRootNumber\": 1,\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter7PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter7PrashnaMargaPredictions"
              ]
            },
            "description": "Comprehensive Ashtamangala algorithm found in Chapter 7 of Prasna Marga returns all prediction steps and factors with Janma Rasi and Nakshatra derived from the birth time.\n\n**Signature:** `Chapter7PrashnaMargaPredictions(intashtamangalaRootNumber,TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `ashtamangalaRootNumber` (`Int32`): \n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter8PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"AshtamangalaRootNumber\": 1,\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter8PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter8PrashnaMargaPredictions"
              ]
            },
            "description": "Chapter 8 Effects of Arudha and Related Factors Prasna Marga Comprehensive implementation covering stanzas 165 Analyzes Arudha Avasthas PranaDehaMrityu RahuChakra KalaHora Chandra Navamsa Chandra Kriya\n\n**Signature:** `Chapter8PrashnaMargaPredictions(intashtamangalaRootNumber,TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `ashtamangalaRootNumber` (`Int32`): \n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Chapter9PrashnaMargaPredictions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"QueryTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Chapter9PrashnaMargaPredictions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Chapter9PrashnaMargaPredictions"
              ]
            },
            "description": "Prasna Marga Chapter 9 Longevity Determination Ayur Prasna Integrates horary and natal chart methods for assessing life span. Classifies life into Alpayus short 032 yrs Madhyayus medium 3264 yrs or Purnayus long 64100 yrs via Yogayus yogabased and Dasayus Dasabased systems. Per Stanza 3 Longevity must be examined FIRST before all other predictions.\n\n**Signature:** `Chapter9PrashnaMargaPredictions(TimebirthTime,TimequeryTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `queryTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ChaturthamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChaturthamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChaturthamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Chaturthamsha D4 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D4 sign.\n\n**Signature:** `ChaturthamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "ChaturthamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChaturthamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChaturthamshaSignName"
              ]
            },
            "description": "Converts a regular zodiac sign into its Chaturthamsha D4 equivalent. This is the core signconversion helper used for D4 chart calculations.\n\n**Signature:** `ChaturthamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "ChaturvimshamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChaturvimshamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChaturvimshamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Chaturvimshamsha D24 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D24 sign.\n\n**Signature:** `ChaturvimshamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "ChaturvimshamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChaturvimshamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChaturvimshamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Chaturvimshamsha D24 equivalent. This is the main signconversion helper used for D24 chart calculations.\n\n**Signature:** `ChaturvimshamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "ChildBirthByJupiter1",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChildBirthByJupiter1",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChildBirthByJupiter1"
              ]
            },
            "description": "Returns the first Jupiterbased Ashtakavarga transit prediction related to childbirth timing.\n\n**Signature:** `ChildBirthByJupiter1(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ChildBirthByJupiter2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChildBirthByJupiter2",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChildBirthByJupiter2"
              ]
            },
            "description": "Returns the second Jupiterbased Ashtakavarga transit prediction related to childbirth timing.\n\n**Signature:** `ChildBirthByJupiter2(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ChildBirthMonthBySun",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChildBirthMonthBySun",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChildBirthMonthBySun"
              ]
            },
            "description": "Returns the Sunbased Ashtakavarga transit prediction used to narrow childbirth timing to a month.\n\n**Signature:** `ChildBirthMonthBySun(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ChildBirthStar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChildBirthStar",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChildBirthStar"
              ]
            },
            "description": "Returns the Ashtakavarga transit prediction related to the childs birth star or starbased timing indicator.\n\n**Signature:** `ChildBirthStar(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ChildLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ChildLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ChildLagna"
              ]
            },
            "description": "Returns the Ashtakavarga transit prediction related to the childs Lagna or Ascendant indication.\n\n**Signature:** `ChildLagna(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ClassifyForKartari",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CoOccupants\": [\n    \"Moon\",\n    \"Mars\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ClassifyForKartari",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ClassifyForKartari"
              ]
            },
            "description": "Classifies a planet as benefic malefic or neutral for Kartari Yoga calculations. The method uses natural benefic and malefic groups then applies two special rules If both benefics and malefics are present with the planet the classification becomes neutral. Mercury is benefic when alone or with benefics but malefic when joined with any malefic.\n\n**Signature:** `ClassifyForKartari(PlanetNameplanet,List<PlanetName>coOccupants)`  \n**Returns:** `String`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet being classified.\n- `coOccupants` (`List<PlanetName>`): Other planets sharing the relevant house or surrounding context."
          },
          "response": []
        },
        {
          "name": "ConstellationAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetLongitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ConstellationAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ConstellationAtLongitude"
              ]
            },
            "description": "Returns the constellation located at a given zodiac longitude. The method normalizes the longitude into the zodiac circle divides it by one Nakshatra span of 1320 rounds up to the constellation number builds and returns the corresponding Constellation.\n\n**Signature:** `ConstellationAtLongitude(AngleplanetLongitude)`  \n**Returns:** `Constellation`\n\n**Parameters**\n- `planetLongitude` (`Angle`): The longitude to convert."
          },
          "response": []
        },
        {
          "name": "ConvertJulianTimeToNormalTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"JulianTime\": 2451545.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ConvertJulianTimeToNormalTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ConvertJulianTimeToNormalTime"
              ]
            },
            "description": "Converts a Julian Day value into a normal UTC DateTime. The method checks the cache uses Swiss Ephemeris to convert Julian UT into calendar date parts builds a DateTime from those parts.\n\n**Signature:** `ConvertJulianTimeToNormalTime(doublejulianTime)`  \n**Returns:** `DateTime`\n\n**Parameters**\n- `julianTime` (`Double`): The Julian Day value to convert."
          },
          "response": []
        },
        {
          "name": "ConvertLmtToJulian",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ConvertLmtToJulian",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ConvertLmtToJulian"
              ]
            },
            "description": "Converts a cTimec value from bLocal Mean Time LMTb into a bJulian Day number in Universal Time UTb and caches the result. The method 1. checks the cache using both the time and current cAyanamsac 2. extracts the LMT date parts 3. passes the values into Swiss Ephemeris 4. returns the Julian Day result. This is the cached Julian conversion helper used by the librarys astronomical calculations.\n\n**Signature:** `ConvertLmtToJulian(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert from LMT to Julian Day."
          },
          "response": []
        },
        {
          "name": "CountFromConstellationToConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Start\": {\n    \"Name\": \"Aswini\",\n    \"Quarter\": 1,\n    \"DegreesInConstellation\": {\n      \"TotalDegrees\": \"5\"\n    }\n  },\n  \"End\": {\n    \"Name\": \"Aswini\",\n    \"Quarter\": 1,\n    \"DegreesInConstellation\": {\n      \"TotalDegrees\": \"5\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CountFromConstellationToConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CountFromConstellationToConstellation"
              ]
            },
            "description": "Counts inclusively from one constellation to another. The method reads the constellation number of the start and end constellations counts forward through the 27constellation cycle wraps around when the end constellation is earlier in the sequence.\n\n**Signature:** `CountFromConstellationToConstellation(Constellationstart,Constellationend)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `start` (`Constellation`): The constellation to count from.\n- `end` (`Constellation`): The constellation to count to."
          },
          "response": []
        },
        {
          "name": "CountFromSignToSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"StartSign\": \"Aries\",\n  \"EndSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/CountFromSignToSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "CountFromSignToSign"
              ]
            },
            "description": "Counts inclusively from one zodiac sign to another. For example counting from Aquarius to Taurus returns 4 Aquarius Pisces Aries Taurus.\n\n**Signature:** `CountFromSignToSign(ZodiacNamestartSign,ZodiacNameendSign)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `startSign` (`ZodiacName`): The sign to count from.\n- `endSign` (`ZodiacName`): The sign to count to."
          },
          "response": []
        },
        {
          "name": "D150AmsaRulers",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/D150AmsaRulers",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "D150AmsaRulers"
              ]
            },
            "description": "Calculates JHoras D150 Nadyamsa values for Lagna and all planets. JHoras default D150Preference is the nonuniform Nadyamsa table.\n\n**Signature:** `D150AmsaRulers(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth time."
          },
          "response": []
        },
        {
          "name": "DasaAtRangeString",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"StartTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EndTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3,\n  \"PrecisionHours\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaAtRangeString",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaAtRangeString"
              ]
            },
            "description": "Same as DasaAtRange but returns the Dasa timeline as a compact JSON string instead of a JObject. Useful for callers that want the raw serialized payload directly.\n\n**Signature:** `DasaAtRangeString(TimebirthTime,TimestartTime,TimeendTime,intlevels,intprecisionHours)`  \n**Returns:** `String`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `startTime` (`Time`): Start of the range to scan.\n- `endTime` (`Time`): End of the range to scan.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3.\n- `precisionHours` (`Int32`): Sampling step across the range in hours default 100."
          },
          "response": []
        },
        {
          "name": "DasaAtTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaAtTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaAtTime"
              ]
            },
            "description": "Returns the Vimshottari Dasa periods operating at a specific moment for the given birth chart nested down to the requested number of levels Maha Dasa Bhukti Antaram ....\n\n**Signature:** `DasaAtTime(TimebirthTime,TimecheckTime,intlevels)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `checkTime` (`Time`): The moment to evaluate the running Dasa periods for.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3."
          },
          "response": []
        },
        {
          "name": "DasaForLife",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3,\n  \"PrecisionHours\": 24,\n  \"ScanYears\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaForLife",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaForLife"
              ]
            },
            "description": "Returns the full Vimshottari Dasa timeline for an entire life starting at birth and scanning forward the given number of years nested down to the requested number of levels. A convenience wrapper over DasaAtRange covering birth to birth scanYears.\n\n**Signature:** `DasaForLife(TimebirthTime,intlevels,intprecisionHours,intscanYears)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3.\n- `precisionHours` (`Int32`): Sampling step across the lifetime in hours default 24.\n- `scanYears` (`Int32`): How many years from birth to cover default 100."
          },
          "response": []
        },
        {
          "name": "DasaForLifeString",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3,\n  \"PrecisionHours\": 24,\n  \"ScanYears\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaForLifeString",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaForLifeString"
              ]
            },
            "description": "Same as DasaForLife but returns the wholelife Dasa timeline as a compact JSON string instead of a JObject. Useful for callers that want the raw serialized payload directly.\n\n**Signature:** `DasaForLifeString(TimebirthTime,intlevels,intprecisionHours,intscanYears)`  \n**Returns:** `String`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3.\n- `precisionHours` (`Int32`): Sampling step across the lifetime in hours default 24.\n- `scanYears` (`Int32`): How many years from birth to cover default 100."
          },
          "response": []
        },
        {
          "name": "DasaForNow",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Levels\": 3\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaForNow",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaForNow"
              ]
            },
            "description": "Returns the Vimshottari Dasa periods operating right now current system time at the birth location for the given birth chart nested down to the requested number of levels Maha Dasa Bhukti Antaram .... Handy for what planetary period am I in today.\n\n**Signature:** `DasaForNow(TimebirthTime,intlevels)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `levels` (`Int32`): How many nested Dasa levels to compute default 3."
          },
          "response": []
        },
        {
          "name": "DasaPeriodAshtakavargaStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"DasaPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaPeriodAshtakavargaStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaPeriodAshtakavargaStrength"
              ]
            },
            "description": "Returns an Ashtakavargabased strength score for a Dasa planet on a 0100 scale. The method calculates the planets Sodya Pinda normalizes it to a percentagelike scale rounds the final result. This can be used as a quick indicator of how strong a Dasa period may be from an Ashtakavarga perspective.\n\n**Signature:** `DasaPeriodAshtakavargaStrength(PlanetNamedasaPlanet,TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `dasaPlanet` (`PlanetName`): The Dasa planet to evaluate.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "DasaYearLengthInDays",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"YearDefinition\": \"Savana\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DasaYearLengthInDays",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DasaYearLengthInDays"
              ]
            },
            "description": "Returns the exact day count used for a JHora dasa year.\n\n**Signature:** `DasaYearLengthInDays(JHoraDasaYearDefinitionyearDefinition)`  \n**Returns:** `Double`\n\n**Parameters**\n- `yearDefinition` (`JHoraDasaYearDefinition`):"
          },
          "response": []
        },
        {
          "name": "DashamamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DashamamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DashamamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Dashamamsha D10 sign at the specified longitude. The method resolves the ordinary zodiac sign at the longitude and then converts it into the D10 sign.\n\n**Signature:** `DashamamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "DashamamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DashamamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DashamamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Dashamamsha D10 equivalent. This is the main signconversion helper used for D10 chart calculations.\n\n**Signature:** `DashamamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "DayDurationHours",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DayDurationHours",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DayDurationHours"
              ]
            },
            "description": "Calculates the length of the daylight period in hours. The method subtracts sunrise time from sunset time for the supplied date and location.\n\n**Signature:** `DayDurationHours(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The date and location to evaluate."
          },
          "response": []
        },
        {
          "name": "DayOfWeek",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DayOfWeek",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DayOfWeek"
              ]
            },
            "description": "Returns the Vedic weekday for the supplied time. The method bases the weekday on the Vedic day calculation rather than simply using the civil midnightbased date.\n\n**Signature:** `DayOfWeek(Timetime)`  \n**Returns:** `DayOfWeek`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "DeathMonthFromSarvashtakavarga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DeathMonthFromSarvashtakavarga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DeathMonthFromSarvashtakavarga"
              ]
            },
            "description": "Returns the Sarvashtakavargabased transit prediction used to estimate or narrow the month connected with death timing.\n\n**Signature:** `DeathMonthFromSarvashtakavarga(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "DestinyNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DestinyNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DestinyNumber"
              ]
            },
            "description": "Numerology The events that occur in your life your relationship with others your future and the end of your life are all denoted by your destiny number. The destiny number denotes to what extent a person will come up in life as well as it determines his fate.\n\n**Signature:** `DestinyNumber(TimebirthTime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "DestinyPoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"AscZodiacSignName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DestinyPoint",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DestinyPoint"
              ]
            },
            "description": "Calculates the bDestiny Pointb and returns its position as a bsign count from the Ascendant signb. The method 1. gets the Nirayana longitudes of Rahu and the Moon 2. measures the forward arc from Rahu to the Moon 3. takes the midpoint of that arc 4. adds the midpoint to Rahus longitude 5. converts the result into a zodiac sign 6. counts how many signs away that sign is from the Ascendant sign.\n\n**Signature:** `DestinyPoint(Timetime,ZodiacNameascZodiacSignName)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The chart time.\n- `ascZodiacSignName` (`ZodiacName`): The Ascendant sign used as the reference point."
          },
          "response": []
        },
        {
          "name": "DetailedAshtakavargaLongevity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DetailedAshtakavargaLongevity",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DetailedAshtakavargaLongevity"
              ]
            },
            "description": "Returns a more detailed perplanet longevity analysis based on Ashtakavarga. The source notes that this extended result includes Haranastyle adjustments such as combustion debilitation enemysign reductions lunartosolar year conversion.\n\n**Signature:** `DetailedAshtakavargaLongevity(TimebirthTime)`  \n**Returns:** `LongevityResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "DhumaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DhumaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DhumaLongitude"
              ]
            },
            "description": "Calculates the longitude of bDhumab an Upagraha derived from the Sun. The method 1. gets the Suns Nirayana longitude 2. adds b13320b 3. normalizes the result to the c0360c range.\n\n**Signature:** `DhumaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DishaShool",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DishaShool",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DishaShool"
              ]
            },
            "description": "Returns the binauspicious travel directionb for the weekday of the supplied time. The method 1. calculates the Vedic weekday 2. maps that weekday to its corresponding Disha Shool direction 3. returns the final direction as text.\n\n**Signature:** `DishaShool(TimeinputTime)`  \n**Returns:** `String`\n\n**Parameters**\n- `inputTime` (`Time`): The time used to determine the weekday."
          },
          "response": []
        },
        {
          "name": "DispositorConjunctWith",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DispositorConjunctWith",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DispositorConjunctWith"
              ]
            },
            "description": "Returns all planets conjunct with the dispositor of the given planet.\n\n**Signature:** `DispositorConjunctWith(PlanetNameplanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose dispositor should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DispositorFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DispositorFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DispositorFromLagna"
              ]
            },
            "description": "Calculates the house distance of a planets dispositor from Lagna. The method finds the planets dispositor gets the Lagna sign gets the dispositors current sign and counts from Lagna to that sign.\n\n**Signature:** `DispositorFromLagna(PlanetNameplanet,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose dispositor is being measured.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DispositorFromMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DispositorFromMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DispositorFromMoon"
              ]
            },
            "description": "Calculates the house distance of a planets dispositor from the Moon sign. The method finds the planets dispositor gets the Moon sign gets the dispositors current sign and counts from the Moon to that sign.\n\n**Signature:** `DispositorFromMoon(PlanetNameplanet,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose dispositor is being measured.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DispositorFromOwnHouses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DispositorFromOwnHouses",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DispositorFromOwnHouses"
              ]
            },
            "description": "Calculates the distance between a planets dispositor and each sign owned by that dispositor. The method finds the dispositor of the input planet gets the signs owned by that dispositor gets the dispositors current sign counts from each owned sign to the dispositors current sign.\n\n**Signature:** `DispositorFromOwnHouses(PlanetNameplanet,Timetime)`  \n**Returns:** `List<Int32>`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose dispositor should be analyzed.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DistanceBetweenPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet1\": {\n    \"Name\": \"Sun\"\n  },\n  \"Planet2\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DistanceBetweenPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DistanceBetweenPlanets"
              ]
            },
            "description": "Calculates the bsmallest angular distanceb between two planets. The method 1. gets the Nirayana longitude of both planets 2. computes the absolute longitudinal difference 3. reduces the result to the smaller arc 4. returns the final value as an cAnglec.\n\n**Signature:** `DistanceBetweenPlanets(PlanetNameplanet1,PlanetNameplanet2,Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planet1` (`PlanetName`): The first planet.\n- `planet2` (`PlanetName`): The second planet.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "DivisionalLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TotalDegrees\": 180.0,\n  \"DivisionalNo\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DivisionalLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DivisionalLongitude"
              ]
            },
            "description": "Calculates a normalized divisional longitude from an input degree value and a divisional chart number. The method multiplies the incoming longitude by the divisional factor repeatedly subtracts 30 degrees until the result falls inside a singlesign range returns the final value as an Angle.\n\n**Signature:** `DivisionalLongitude(doubletotalDegrees,intdivisionalNo)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `totalDegrees` (`Double`): The source longitude in degrees.\n- `divisionalNo` (`Int32`): The divisional chart number."
          },
          "response": []
        },
        {
          "name": "DrekkanaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DrekkanaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DrekkanaSignAtLongitude"
              ]
            },
            "description": "Returns the Drekkana D3 sign at a given longitude. The method first resolves the regular zodiac sign at that longitude and then converts it to its Drekkana form.\n\n**Signature:** `DrekkanaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "DrekkanaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DrekkanaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DrekkanaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Drekkana D3 equivalent. This is the main signconversion helper for Drekkana chart calculations.\n\n**Signature:** `DrekkanaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "Durmuhurta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Durmuhurta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Durmuhurta"
              ]
            },
            "description": "Calculates the Durmuhurta interval or intervals for the Vedic weekday containing the supplied time. Sunday Wednesday and Saturday have one interval. The remaining weekdays have two intervals.\n\n**Signature:** `Durmuhurta(Timetime)`  \n**Returns:** `List<TimeRange>`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "DwadashamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DwadashamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DwadashamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Dwadashamsha D12 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D12 sign.\n\n**Signature:** `DwadashamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "DwadashamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/DwadashamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "DwadashamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Dwadashamsha D12 equivalent. This is the main signconversion helper used for D12 chart calculations.\n\n**Signature:** `DwadashamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "EclipticObliquity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EclipticObliquity",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EclipticObliquity"
              ]
            },
            "description": "Returns the true obliquity of the ecliptic for the supplied time. The method gets the obliquity value through Swiss Ephemeris including nutation effects where available.\n\n**Signature:** `EclipticObliquity(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time for which obliquity should be calculated."
          },
          "response": []
        },
        {
          "name": "EpochInterval",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time1\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EpochInterval",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EpochInterval"
              ]
            },
            "description": "Calculates the number of days between the configured epoch and the supplied chart time. The method converts the time into the needed date representation and returns the day interval used by meanmotion calculations.\n\n**Signature:** `EpochInterval(Timetime1)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time1` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "EventEndTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EventData\": \"BirdRuling\",\n  \"PrecisionInHours\": 24\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EventEndTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EventEndTime"
              ]
            },
            "description": "Finds the end time of an event by scanning forward from a time when the event is already known to be active. The method repeatedly steps into the future until the event is no longer occurring then returns the last confirmed time at which the event was still active.\n\n**Signature:** `EventEndTime(TimebirthTime,TimecheckTime,EventDataeventData,intprecisionInHours)`  \n**Returns:** `Time`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time used to build the event context.\n- `checkTime` (`Time`): A time at which the event is assumed to be active.\n- `eventData` (`EventData`): The event definition to evaluate.\n- `precisionInHours` (`Int32`): The number of hours to move forward on each scan step."
          },
          "response": []
        },
        {
          "name": "EventsAtRange",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"StartTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EndTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EventTagList\": [\n    \"PD1\",\n    \"PD2\"\n  ],\n  \"PrecisionHours\": 100\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EventsAtRange",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EventsAtRange"
              ]
            },
            "description": "Calculates all matching events that occur within a given time range. The method wraps the birth time in a temporary Person object and then runs the main event engine across the requested interval.\n\n**Signature:** `EventsAtRange(TimebirthTime,TimestartTime,TimeendTime,List<EventTag>eventTagList,intprecisionHours)`  \n**Returns:** `List<Event>`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time associated with the event calculation.\n- `startTime` (`Time`): The start of the range to evaluate.\n- `endTime` (`Time`): The end of the range to evaluate.\n- `eventTagList` (`List<EventTag>`): The types of events to calculate.\n- `precisionHours` (`Int32`): The scanning interval in hours used during event calculation."
          },
          "response": []
        },
        {
          "name": "EventsAtTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EventTagList\": [\n    \"PD1\",\n    \"PD2\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EventsAtTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EventsAtTime"
              ]
            },
            "description": "Returns all events that are active at a specific moment based on a persons birth time and a selected set of event tags. This method effectively creates a singletime slice from the larger event chart and can be used to inspect what is happening at one exact moment. The method wraps the birth time inside a temporary Person object so that the event engine can use the existing eventcalculation pipeline.\n\n**Signature:** `EventsAtTime(TimebirthTime,TimecheckTime,List<EventTag>eventTagList)`  \n**Returns:** `List<Event>`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time of the person related to the event calculation.\n- `checkTime` (`Time`): The moment to evaluate.\n- `eventTagList` (`List<EventTag>`): The list of event categories to include."
          },
          "response": []
        },
        {
          "name": "EventStartEndTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"NameOfEvent\": \"GoodTarabala\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EventStartEndTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EventStartEndTime"
              ]
            },
            "description": "Returns the full event window for a specific event if that event is active at the supplied check time. The method 1. finds the event definition 2. checks whether the event is occurring at the requested moment 3. scans backward to find the start time 4. scans forward to find the end time 5. returns a completed Event object with timing and tags. If the event is not active at the requested time the method returns Event.Empty.\n\n**Signature:** `EventStartEndTime(TimebirthTime,TimecheckTime,EventNamenameOfEvent)`  \n**Returns:** `Event`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `checkTime` (`Time`): The time used to test whether the event is currently active.\n- `nameOfEvent` (`EventName`): The event to evaluate."
          },
          "response": []
        },
        {
          "name": "EventStartTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EventData\": \"BirdRuling\",\n  \"PrecisionInHours\": 24\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/EventStartTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "EventStartTime"
              ]
            },
            "description": "Finds the start time of an event by scanning backward from a time when the event is already known to be active. The method repeatedly steps into the past until the event is no longer occurring then returns the last confirmed time at which the event was still active.\n\n**Signature:** `EventStartTime(TimebirthTime,TimecheckTime,EventDataeventData,intprecisionInHours)`  \n**Returns:** `Time`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time used to build the event context.\n- `checkTime` (`Time`): A time at which the event is assumed to be active.\n- `eventData` (`EventData`): The event definition to evaluate.\n- `precisionInHours` (`Int32`): The number of hours to move backward on each scan step."
          },
          "response": []
        },
        {
          "name": "FatherDeathByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FatherDeathBySaturn1",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathBySaturn1",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathBySaturn1"
              ]
            },
            "description": "Returns the first Saturnbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathBySaturn1(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FatherDeathBySaturn2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathBySaturn2",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathBySaturn2"
              ]
            },
            "description": "Returns the second Saturnbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathBySaturn2(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FatherDeathBySaturnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathBySaturnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathBySaturnSign"
              ]
            },
            "description": "Returns the Saturnsignbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathBySaturnSign(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FatherDeathBySun",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathBySun",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathBySun"
              ]
            },
            "description": "Returns the Sunbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathBySun(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FatherDeathBySunSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FatherDeathBySunSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FatherDeathBySunSign"
              ]
            },
            "description": "Returns the Sunsignbased Ashtakavarga transit prediction related to the fathers death timing.\n\n**Signature:** `FatherDeathBySunSign(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "FindBirthTimeByAnimal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PossibleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"PrecisionHours\": 1.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindBirthTimeByAnimal",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindBirthTimeByAnimal"
              ]
            },
            "description": "Builds a list of possible birth times for the given day by checking the animal prediction associated with each time slice. For every generated time slice the method calculates the Moons constellation derives the corresponding Yoni Kuta animal stores the result as a keyvalue pair where the key is the time slice and the value is the predicted animal. This is useful when narrowing down a birth time based on an expected or known animal association from constellationbased matching.\n\n**Signature:** `FindBirthTimeByAnimal(TimepossibleBirthTime,doubleprecisionHours)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `possibleBirthTime` (`Time`): \n- `precisionHours` (`Double`):"
          },
          "response": []
        },
        {
          "name": "FindBirthTimeByMachineLearning",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PossibleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BodyHeight\": \"Medium\",\n  \"BodyShape\": \"Average\",\n  \"Hair\": \"Black\",\n  \"Lips\": \"Medium\",\n  \"Nose\": \"Straight\",\n  \"Complexion\": \"Medium\",\n  \"FaceShape\": \"Oval\",\n  \"Constitution\": \"Pitta\",\n  \"Personality\": \"Calm\",\n  \"PrecisionHours\": 0.041666666666666664,\n  \"ModelType\": \"NCC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindBirthTimeByMachineLearning",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindBirthTimeByMachineLearning"
              ]
            },
            "description": "Rectifies finds an unknown birth time using machine learning over physical and personality traits. Scans candidate time slices across the birth day and returns the TimeRange the model judges most consistent with the supplied appearance and temperament body heightshape hair lips nose complexion face shape constitution personality. Uses the RAMAN ayanamsa to match the trained rule set model and precision are configurable.\n\n**Signature:** `FindBirthTimeByMachineLearning(TimepossibleBirthTime,stringbodyHeight,stringbodyShape,stringhair,stringlips,stringnose,stringcomplexion,stringfaceShape,stringconstitution,stringpersonality,doubleprecisionHours,BirthTimeModelTypemodelType)`  \n**Returns:** `TimeRange`\n\n**Parameters**\n- `possibleBirthTime` (`Time`): An approximate birth time location on the correct birth day.\n- `bodyHeight` (`String`): Described body height trait.\n- `bodyShape` (`String`): Described body shapebuild trait.\n- `hair` (`String`): Described hair trait.\n- `lips` (`String`): Described lips trait.\n- `nose` (`String`): Described nose trait.\n- `complexion` (`String`): Described complexion trait.\n- `faceShape` (`String`): Described face shape trait.\n- `constitution` (`String`): Described bodily constitution trait.\n- `personality` (`String`): Described personality trait.\n- `precisionHours` (`Double`): Width of each scanned time slice in hours default 2.5 minutes.\n- `modelType` (`BirthTimeModelType`): Which trained model to use default NCC."
          },
          "response": []
        },
        {
          "name": "FindBirthTimeByMachineLearningTopK",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PossibleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BodyHeight\": \"Medium\",\n  \"BodyShape\": \"Average\",\n  \"Hair\": \"Black\",\n  \"Lips\": \"Medium\",\n  \"Nose\": \"Straight\",\n  \"Complexion\": \"Medium\",\n  \"FaceShape\": \"Oval\",\n  \"Constitution\": \"Pitta\",\n  \"Personality\": \"Calm\",\n  \"PrecisionHours\": 0.041666666666666664,\n  \"ModelType\": \"NCC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindBirthTimeByMachineLearningTopK",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindBirthTimeByMachineLearningTopK"
              ]
            },
            "description": "Returns the topK most likely birthtime ranges using only the NCC bodyrule database. Every NccBodyRuleEntry is evaluated directly against every time slice. Rules such as SaturnInLagna MarsInLagna SunInPisces LagnaLordCombust LagnaInFierySign etc. are treated as firstclass predictors. Rising sign is NOT the master class it is emitted diagnostically only.\n\n**Signature:** `FindBirthTimeByMachineLearningTopK(TimepossibleBirthTime,stringbodyHeight,stringbodyShape,stringhair,stringlips,stringnose,stringcomplexion,stringfaceShape,stringconstitution,stringpersonality,doubleprecisionHours,BirthTimeModelTypemodelType)`  \n**Returns:** `JArray`\n\n**Parameters**\n- `possibleBirthTime` (`Time`): \n- `bodyHeight` (`String`): \n- `bodyShape` (`String`): \n- `hair` (`String`): \n- `lips` (`String`): \n- `nose` (`String`): \n- `complexion` (`String`): \n- `faceShape` (`String`): \n- `constitution` (`String`): \n- `personality` (`String`): \n- `precisionHours` (`Double`): \n- `modelType` (`BirthTimeModelType`):"
          },
          "response": []
        },
        {
          "name": "FindBirthTimeByRisingSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PossibleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"PrecisionHours\": 1.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindBirthTimeByRisingSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindBirthTimeByRisingSign"
              ]
            },
            "description": "Builds a list of possible birth times for the given day by checking the rising sign Lagna prediction for each time slice. For every generated time slice the method calculates horoscope predictions using the RisingSign event tag selects the first matching prediction stores the result in a JSON object keyed by the time slice. This helps narrow down a possible birth time when the expected rising sign is already known or suspected.\n\n**Signature:** `FindBirthTimeByRisingSign(TimepossibleBirthTime,doubleprecisionHours)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `possibleBirthTime` (`Time`): \n- `precisionHours` (`Double`):"
          },
          "response": []
        },
        {
          "name": "FindBirthTimeHouseStrengthPerson",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PossibleBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"PrecisionHours\": 1.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindBirthTimeHouseStrengthPerson",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindBirthTimeHouseStrengthPerson"
              ]
            },
            "description": "Builds a birthtime comparison table by calculating the strength of every house for each time slice on the selected day. For every generated time slice the method loops through all houses calculates each houses strength formats the strengths into a single readable string stores the final summary beside the corresponding time. This is useful for manually comparing how house strength changes across the day when trying to refine a birth time.\n\n**Signature:** `FindBirthTimeHouseStrengthPerson(TimepossibleBirthTime,doubleprecisionHours)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `possibleBirthTime` (`Time`): \n- `precisionHours` (`Double`):"
          },
          "response": []
        },
        {
          "name": "FindDrishtiValue",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Dk\": 1.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindDrishtiValue",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindDrishtiValue"
              ]
            },
            "description": "Calculates the ordinary Drishti or aspect value from an angular distance. The method maps different angular ranges to different aspectstrength formulas. This produces a graduated aspect value rather than a simple yesorno aspect.\n\n**Signature:** `FindDrishtiValue(doubledk)`  \n**Returns:** `Double`\n\n**Parameters**\n- `dk` (`Double`): The angular distance between the aspecting and receiving body."
          },
          "response": []
        },
        {
          "name": "FindViseshaDrishti",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Dk\": 1.0,\n  \"P\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FindViseshaDrishti",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FindViseshaDrishti"
              ]
            },
            "description": "Calculates the special aspect value Vishesha Drishti for Mars Jupiter or Saturn. The method checks the angular distance dk and applies additional specialaspect strength when the planet is Saturn special strength over the 3rd and 10th aspect zones. Jupiter special strength over the 5th and 9th aspect zones. Mars special strength over the 4th and 8th aspect zones.\n\n**Signature:** `FindViseshaDrishti(doubledk,PlanetNamep)`  \n**Returns:** `Double`\n\n**Parameters**\n- `dk` (`Double`): The angular distance from the aspecting planet.\n- `p` (`PlanetName`): The planet casting the aspect."
          },
          "response": []
        },
        {
          "name": "FortunaPoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"AscZodiacSignName\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FortunaPoint",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FortunaPoint"
              ]
            },
            "description": "Calculates the bFortuna Pointb and returns its position as a bsign count from the Ascendant signb. The method 1. gets the Ascendant Moon and Sun longitudes 2. measures the Moons distance from the Sun 3. adds that arc to the Ascendant longitude 4. converts the resulting point into a zodiac sign 5. counts how many signs away that result is from the supplied Ascendant sign.\n\n**Signature:** `FortunaPoint(ZodiacNameascZodiacSignName,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `ascZodiacSignName` (`ZodiacName`): The Ascendant sign used as the reference point.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "FunctionalMaleficPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/FunctionalMaleficPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "FunctionalMaleficPlanetList"
              ]
            },
            "description": "Returns the complete list of functional malefic planets for the charts Lagna. The method delegates to MaleficPlanetListForLagna... which includes lagnaspecific malefic lordship conditional Moon behavior conditional Mercury behavior Rahu and Ketu as malefics.\n\n**Signature:** `FunctionalMaleficPlanetList(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "GetActiveNccBodyRulesAtTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BodyHeight\": \"Medium\",\n  \"BodyShape\": \"Average\",\n  \"Hair\": \"Black\",\n  \"Lips\": \"Medium\",\n  \"Nose\": \"Straight\",\n  \"Complexion\": \"Medium\",\n  \"FaceShape\": \"Oval\",\n  \"Constitution\": \"Pitta\",\n  \"Personality\": \"Calm\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetActiveNccBodyRulesAtTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetActiveNccBodyRulesAtTime"
              ]
            },
            "description": "Diagnostic returns the classical NCC body rules that fire at the given birth time each scored against the supplied body features. Intended for explain this prediction UI panels and for the multirule tester percelebrity ruledatabase accuracy. Empty body fields are skipped during matching no penalty.\n\n**Signature:** `GetActiveNccBodyRulesAtTime(TimebirthTime,stringbodyHeight,stringbodyShape,stringhair,stringlips,stringnose,stringcomplexion,stringfaceShape,stringconstitution,stringpersonality)`  \n**Returns:** `JArray`\n\n**Parameters**\n- `birthTime` (`Time`): \n- `bodyHeight` (`String`): \n- `bodyShape` (`String`): \n- `hair` (`String`): \n- `lips` (`String`): \n- `nose` (`String`): \n- `complexion` (`String`): \n- `faceShape` (`String`): \n- `constitution` (`String`): \n- `personality` (`String`):"
          },
          "response": []
        },
        {
          "name": "GetAllHouseNirayanaMiddleLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetAllHouseNirayanaMiddleLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetAllHouseNirayanaMiddleLongitudes"
              ]
            },
            "description": "Returns the Nirayana middle longitudes of the twelve houses using Swiss Ephemeris. The method gets the chart location converts the time to Julian Universal Time sets the sidereal ayanamsa mode calculates house cusps using Swiss Ephemeris returns the cusp array.\n\n**Signature:** `GetAllHouseNirayanaMiddleLongitudes(Timetime)`  \n**Returns:** `Double[]`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "GetAscendantLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetAscendantLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetAscendantLongitude"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `GetAscendantLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "GetAvailableSourceTexts",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetAvailableSourceTexts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetAvailableSourceTexts"
              ]
            },
            "description": "Returns a list of all available source text names in the knowledge base. Used by the frontend dropdown to dynamically show which classical texts are searchable.\n\n**Signature:** `GetAvailableSourceTexts()`  \n**Returns:** `Task<JArray>`"
          },
          "response": []
        },
        {
          "name": "GetCharaDasaAtTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetCharaDasaAtTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetCharaDasaAtTime"
              ]
            },
            "description": "Calculates the active Chara Dasa sign period at a given moment and when found also fills in its subperiods. The method determines the natal Lagna sign builds the Chara Dasa sign order from that Lagna calculates the duration of each Dasa sign generates the full sequence of Dasa periods finds which period contains the requested checkTime computes the subperiods for the active Dasa. This is the main entry point for Chara Dasa lookup in this section.\n\n**Signature:** `GetCharaDasaAtTime(TimebirthTime,TimecheckTime)`  \n**Returns:** `DashaPeriod`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `checkTime` (`Time`): The time for which the active Chara Dasa period should be identified."
          },
          "response": []
        },
        {
          "name": "GetConstellationTransitStartTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"StartTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EndTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetConstellationTransitStartTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetConstellationTransitStartTime"
              ]
            },
            "description": "Returns the times at which a planet benters a new constellationb between two dates. For each detected constellation change the method returns the transition time the new constellation name the zodiac sign occupied at that moment.\n\n**Signature:** `GetConstellationTransitStartTime(TimestartTime,TimeendTime,PlanetNameplanetName)`  \n**Returns:** `List<Tuple<Time, ConstellationName, ZodiacSign>>`\n\n**Parameters**\n- `startTime` (`Time`): Beginning of the scan range.\n- `endTime` (`Time`): End of the scan range.\n- `planetName` (`PlanetName`): The planet to track."
          },
          "response": []
        },
        {
          "name": "GetDasaInfoForAscendant",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"AscendantName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetDasaInfoForAscendant",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetDasaInfoForAscendant"
              ]
            },
            "description": "Returns traditional bDasa interpretation guidance for a given ascendantb. The method 1. selects the list of generally favorable planets for the ascendant 2. selects the list of generally unfavorable planets 3. retrieves a narrative description explaining how those planets behave for that Lagna 4. packages the result into an cAscendantDasaInfoc object. This helper is meant to support Dasa interpretation by giving quick signspecific guidance on which planets are broadly auspicious inauspicious or capable of producing yoga or maraka effects.\n\n**Signature:** `GetDasaInfoForAscendant(ZodiacNameascendantName)`  \n**Returns:** `AscendantDasaInfo`\n\n**Parameters**\n- `ascendantName` (`ZodiacName`): The ascendant sign for which Dasa guidance is required."
          },
          "response": []
        },
        {
          "name": "GetEventTiming",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"NameOfEvent\": \"GoodTarabala\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetEventTiming",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetEventTiming"
              ]
            },
            "description": "Resolves the full timing window start and end for a single specific event given a moment at which the event is believed to be active. If the event is not active at the supplied check time returns Event.Empty.\n\n**Signature:** `GetEventTiming(TimebirthTime,TimecheckTime,EventNamenameOfEvent)`  \n**Returns:** `Event`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time used to anchor the event calculation.\n- `checkTime` (`Time`): A time at which the event is assumed to be currently occurring.\n- `nameOfEvent` (`EventName`): The event whose timing window should be resolved."
          },
          "response": []
        },
        {
          "name": "GetHouseFromLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetHouseFromLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetHouseFromLongitude"
              ]
            },
            "description": "Gets the house occupied by a longitude relative to Lagna. Uses wholesign house calculation House 1 Lagna sign House 2 next sign ... House 12 previous sign Compatible with classical Jyotisha and JHora planetary house placement.\n\n**Signature:** `GetHouseFromLongitude(Anglelongitude,Timetime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `longitude` (`Angle`): Planetary longitude.\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "GetHouseTags",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetHouseTags",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetHouseTags"
              ]
            },
            "description": "Returns a plainEnglish keyword summary for a house. Each house is mapped to a compact descriptive string covering its main life themes such as health family children profession losses marriage longevity and related subjects. This helper is used when converting technical house references into more readable interpretation text.\n\n**Signature:** `GetHouseTags(HouseNamehouse)`  \n**Returns:** `String`\n\n**Parameters**\n- `house` (`HouseName`): The house whose descriptive tags should be returned."
          },
          "response": []
        },
        {
          "name": "GetHouseType",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetHouseType",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetHouseType"
              ]
            },
            "description": "Returns the traditional bhousetype classification labelsb for a given house. Depending on the house number the returned string may include one or more of the following categories bQuadrants Kendrasb bTrines Trikonasb bCadent Panaparasb bSucceedent Apoklimasb bUpachayasb The method builds the result by checking the input house against multiple classification groups and concatenating the matching labels.\n\n**Signature:** `GetHouseType(HouseNamehouseNumber)`  \n**Returns:** `String`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to classify."
          },
          "response": []
        },
        {
          "name": "GetNakshatraLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Nakshatra\": \"Aswini\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetNakshatraLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetNakshatraLord"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `GetNakshatraLord(ConstellationNamenakshatra)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `nakshatra` (`ConstellationName`):"
          },
          "response": []
        },
        {
          "name": "GetPlanetSignInDivisionalChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"DivisionalChart\": \"RasiD1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetPlanetSignInDivisionalChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetPlanetSignInDivisionalChart"
              ]
            },
            "description": "Gets the zodiac sign occupied by a planet in a divisional chart. Supports the divisionalchart identifiers implemented by VedAstro D1 D2 D3 D4 D7 D9 D10 D12 D16 D20 D24 D27 D30 D40 D45 and D60. Formula Divisional position floorlongitude inside sign division normalized back into zodiac signs.\n\n**Signature:** `GetPlanetSignInDivisionalChart(PlanetNameplanet,Timetime,stringdivisionalChart)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `time` (`Time`): \n- `divisionalChart` (`String`):"
          },
          "response": []
        },
        {
          "name": "GetPlanetTags",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LordOfHouse\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetPlanetTags",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetPlanetTags"
              ]
            },
            "description": "Returns a traditional keyword summary for a planet. The returned description may include themes such as relationships represented by the planet benefic or malefic nature color temperament responsibilities symbolic domains or other interpretive associations. This helper is used to translate a technical planet reference into plainEnglish interpretive keywords.\n\n**Signature:** `GetPlanetTags(PlanetNamelordOfHouse)`  \n**Returns:** `String`\n\n**Parameters**\n- `lordOfHouse` (`PlanetName`): The planet to describe."
          },
          "response": []
        },
        {
          "name": "GetPlanetTagsFromList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetList\": [\n    \"Moon\",\n    \"Mars\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetPlanetTagsFromList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetPlanetTagsFromList"
              ]
            },
            "description": "Builds one combined descriptive string for a list of planets by concatenating the tag text of each planet. This is a convenience helper that repeatedly calls cGetPlanetTags...c and joins the results into a single string.\n\n**Signature:** `GetPlanetTagsFromList(List<PlanetName>planetList)`  \n**Returns:** `String`\n\n**Parameters**\n- `planetList` (`List<PlanetName>`): The list of planets to describe."
          },
          "response": []
        },
        {
          "name": "GetPlanetZodiacSignInDivisionalChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"DivisionalChart\": \"RasiD1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetPlanetZodiacSignInDivisionalChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetPlanetZodiacSignInDivisionalChart"
              ]
            },
            "description": "Returns the complete divisional position used by JHoras Varga dignity table. Unlike see crefGetPlanetSignInDivisionalChart this preserves the degree inside the destination sign which is required for degreesensitive Moolatrikona checks.\n\n**Signature:** `GetPlanetZodiacSignInDivisionalChart(PlanetNameplanet,Timetime,stringdivisionalChart)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `time` (`Time`): \n- `divisionalChart` (`String`):"
          },
          "response": []
        },
        {
          "name": "GetSignLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetSignLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetSignLord"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `GetSignLord(ZodiacNamesign)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `sign` (`ZodiacName`):"
          },
          "response": []
        },
        {
          "name": "GetSignTags",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetSignTags",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetSignTags"
              ]
            },
            "description": "Returns a plainEnglish keyword summary for a zodiac sign. The descriptions include traditional sign characteristics such as modality odd or even nature gender elemental quality temperament fertility ascensional type and rising style. This helper is intended to support signbased delineation especially for character and mentaldisposition interpretation.\n\n**Signature:** `GetSignTags(ZodiacNamezodiacName)`  \n**Returns:** `String`\n\n**Parameters**\n- `zodiacName` (`ZodiacName`): The zodiac sign to describe."
          },
          "response": []
        },
        {
          "name": "GetTithiNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SunLongitude\": 90.0,\n  \"MoonLongitude\": 120.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GetTithiNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GetTithiNumber"
              ]
            },
            "description": "Gets Tithi number from SunMoon angular difference. 30 Tithis 15 Shukla 15 Krishna\n\n**Signature:** `GetTithiNumber(doublesunLongitude,doublemoonLongitude)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `sunLongitude` (`Double`): \n- `moonLongitude` (`Double`):"
          },
          "response": []
        },
        {
          "name": "GhatakaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GhatakaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GhatakaChakra"
              ]
            },
            "description": "Checks the Ghataka Chakra for potentially harmful or adverse indicators at a given time. The method gets the natives birth Moon sign loads the Ghataka rule row for that Moon sign compares the current Moon sign Tithi group weekday Moon constellation and Lagna against that row returns the names of the matching harmful indicators.\n\n**Signature:** `GhatakaChakra(Timetime,TimebirthTime)`  \n**Returns:** `List<String>`\n\n**Parameters**\n- `time` (`Time`): The event or check time.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "GocharaKakshas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GocharaKakshas",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GocharaKakshas"
              ]
            },
            "description": "Kakshyas for daily use The concept of Kakshyas can be employed for daily use. The method of this application is simple. Prepare the Prastaraka charts for the seven planets. Then find out the longitudes of each of the seven planets on a given day. In the Prastaraka of the Sun see if the transiting Sun is passing through a Kakshya with a benefic point. For the Moons transit consider the Prastaraka of the Moon. See for all the planets. When several planets are transiting the Kakshyas where the natal planets have contributed benefic points that day is auspicious. When several planets transit the Kakshyas where there are no benefic points it is adverse time for the native The Concept of Kakshya The Prastaraka charts for different planets can be represented in a different manner to make use of the concept of Kakshyas. Each rashi or sign is divided into eight equal parts or Kakshyas The Prastaraka chart for each planet can thus be readjusted to bring in the concept of the Kakshyas. A planet is considered to be productive of benefic results when it transits a Kakshya where there is a benefic point\n\n**Signature:** `GocharaKakshas(TimecheckTime,TimebirthTime)`  \n**Returns:** `GocharaKakshas`\n\n**Parameters**\n- `checkTime` (`Time`): \n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "GocharaZodiacSignCountFromMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CurrentTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GocharaZodiacSignCountFromMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GocharaZodiacSignCountFromMoon"
              ]
            },
            "description": "Returns the Gochara sign count from the natal Moon sign for a given planet at a specific time. In this codebase Gochara refers to transits. The method gets the Moon sign at birth janma rasi gets the planets current Rasi sign counts from the natal Moon sign to the planets current sign returns the resulting housestyle count. This is one of the core helper methods used throughout the transit and Gochara logic.\n\n**Signature:** `GocharaZodiacSignCountFromMoon(TimebirthTime,TimecurrentTime,PlanetNameplanet)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `currentTime` (`Time`): The time of the transit being checked.\n- `planet` (`PlanetName`): The transiting planet."
          },
          "response": []
        },
        {
          "name": "GouriPanchanga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GouriPanchanga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GouriPanchanga"
              ]
            },
            "description": "Generates the sixteen Gouri Panchanga or Gauri Choghadiya periods for the Vedic day. Eight periods cover sunrisetosunset. Eight periods cover sunsettonextsunrise.\n\n**Signature:** `GouriPanchanga(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "GreenwichApparentInJulianDays",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GreenwichApparentInJulianDays",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GreenwichApparentInJulianDays"
              ]
            },
            "description": "Converts the supplied time into bGreenwich Apparent Time in Julian daysb. The method 1. gets the Greenwich LMT value in Julian days 2. reads the location longitude 3. calls Swiss Ephemeris to convert from local mean time to local apparent time 4. returns the final Julianday value.\n\n**Signature:** `GreenwichApparentInJulianDays(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "GreenwichLmtInJulianDays",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GreenwichLmtInJulianDays",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GreenwichLmtInJulianDays"
              ]
            },
            "description": "Converts the input times Local Mean Time into Greenwichbased Julian Day format. The method gets the input time as LMT converts it to universal time extracts the UTC date and fractional hour calls Swiss Ephemeris swe_julday....\n\n**Signature:** `GreenwichLmtInJulianDays(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "GreenwichTimeFromJulianDays",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"JulianTime\": 2451545.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GreenwichTimeFromJulianDays",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GreenwichTimeFromJulianDays"
              ]
            },
            "description": "Converts a Julian Day value at Greenwich into a DateTimeOffset. The method checks the cache converts the Julian Day into date and time components using Swiss Ephemeris creates a DateTime wraps it in a DateTimeOffset with a 0000 offset.\n\n**Signature:** `GreenwichTimeFromJulianDays(doublejulianTime)`  \n**Returns:** `DateTimeOffset`\n\n**Parameters**\n- `julianTime` (`Double`): Julian Day value at Greenwich."
          },
          "response": []
        },
        {
          "name": "GulikaKala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GulikaKala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GulikaKala"
              ]
            },
            "description": "Calculates the Gulika Kala interval for the Vedic day containing the supplied time. Daylight from sunrise to sunset is divided into eight equal parts.\n\n**Signature:** `GulikaKala(Timetime)`  \n**Returns:** `TimeRange`\n\n**Parameters**\n- `time` (`Time`): The time and location to evaluate."
          },
          "response": []
        },
        {
          "name": "GulikaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/GulikaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "GulikaLongitude"
              ]
            },
            "description": "Calculates the longitude of bGulikab using the bbeginning of Saturns planetary partb in the current implementation. The method delegates to cUpagrahaLongitude...c and requests the cbeginc position for Saturns part.\n\n**Signature:** `GulikaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HasBalarishtaExceptions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HasBalarishtaExceptions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HasBalarishtaExceptions"
              ]
            },
            "description": "Checks whether any classical Balarishta cancellation or exception is present in the birth chart. The method tests multiple protective combinations including Moon full exalted Vargottama or in a friendly sign strong Lagna lord in Kendra with benefic support and no malefic aspect Jupiter Venus or Mercury in Kendra without malefic aspects Rahu in the 3rd 6th or 11th house strong Jupiter in Kendra specific daynight and Paksha conditions involving the Moon Lagna lord in Kendra or Trikona benefics in Kendras strong Moon in favorable house positions strong natural benefic influence on Lagna.\n\n**Signature:** `HasBalarishtaExceptions(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "HoraAtBirth",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoraAtBirth",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoraAtBirth"
              ]
            },
            "description": "Calculates which Hora of the Vedic day contains the supplied time. The method gets the birth time in local mean time gets sunrise for the current date uses the previous days sunrise if the time occurs before sunrise measures the hours elapsed since the relevant sunrise rounds up to the next whole Hora clamps the result to the range 124.\n\n**Signature:** `HoraAtBirth(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The birth or event time."
          },
          "response": []
        },
        {
          "name": "HoraSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoraSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoraSignAtLongitude"
              ]
            },
            "description": "Returns the Hora D2 sign at a given longitude. The method first resolves the regular zodiac sign at the longitude and then converts it into the Hora sign.\n\n**Signature:** `HoraSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "HoraSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoraSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoraSignName"
              ]
            },
            "description": "Converts a regular zodiac sign into its Hora D2 equivalent. This is the core signconversion helper for Hora chart calculations.\n\n**Signature:** `HoraSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "HoraTable",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoraTable",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoraTable"
              ]
            },
            "description": "Generates the twentyfour planetary Horas of the Vedic day. The twelve daytime Horas divide sunrisetosunset equally. The twelve nighttime Horas divide sunsettonextsunrise equally. Planetary rulership is obtained from VedAstros existing LordOfHoraFromWeekday method.\n\n**Signature:** `HoraTable(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "HoroscopePredictionAlpacaTemplateLoRA",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoroscopePredictionAlpacaTemplateLoRA",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoroscopePredictionAlpacaTemplateLoRA"
              ]
            },
            "description": "Exports all horoscope prediction definitions in a simple bAlpacastyle instruction datasetb format for model training. For each stored horoscope rule the method creates a JSON object with cinstructionc the prediction name cinputc an empty string coutputc the prediction description.\n\n**Signature:** `HoroscopePredictionAlpacaTemplateLoRA(TimebirthTime)`  \n**Returns:** `Task<List<JObject>>`\n\n**Parameters**\n- `birthTime` (`Time`): Included in the signature but not currently used by the method body."
          },
          "response": []
        },
        {
          "name": "HoroscopePredictionsForLargeAstrologyModelTrainingData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HoroscopePredictionsForLargeAstrologyModelTrainingData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HoroscopePredictionsForLargeAstrologyModelTrainingData"
              ]
            },
            "description": "Builds a compact btrainingdata summaryb from selected horoscope prediction categories. The method 1. limits processing to a small tag set Rising Sign Planet In Signs Planet In House House Yoga 2. gets the predictions for each tag 3. keeps the top 70 of each group after weight sorting 4. joins the selected descriptions and names into one combined string 5. returns the result inside a cJObjectc.\n\n**Signature:** `HoroscopePredictionsForLargeAstrologyModelTrainingData(TimebirthTime)`  \n**Returns:** `Task<JObject>`\n\n**Parameters**\n- `birthTime` (`Time`): The chart time used to generate the predictions."
          },
          "response": []
        },
        {
          "name": "HouseAkshavedamshaD45Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseAkshavedamshaD45Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseAkshavedamshaD45Sign"
              ]
            },
            "description": "Returns the Akshavedamsha D45 sign for a house using the midpoint of House 1 as the starting reference. The method finds the D45 sign of House 1 counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseAkshavedamshaD45Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseAllPlanetOccupiesBasedOnLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseAllPlanetOccupiesBasedOnLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseAllPlanetOccupiesBasedOnLongitudes"
              ]
            },
            "description": "Returns the longitudebased house placement of all nine planets. The method loops through all nine planets calculates each planets house using HousePlanetOccupiesBasedOnLongitudes... and stores the result in a dictionary.\n\n**Signature:** `HouseAllPlanetOccupiesBasedOnLongitudes(Timetime)`  \n**Returns:** `Dictionary<PlanetName, HouseName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseBhamshaD27Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseBhamshaD27Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseBhamshaD27Sign"
              ]
            },
            "description": "Returns the Bhamsha D27 sign for a house using the midpoint of House 1 as the starting reference. The method 1. finds the D27 sign of House 1 2. counts forward to the requested house 3. preserves the degree component from the starting sign.\n\n**Signature:** `HouseBhamshaD27Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseBhavaChalitSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseBhavaChalitSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseBhavaChalitSign"
              ]
            },
            "description": "Returns the Bhava Chalit sign for a house based on the houses middle longitude. The method loads all house longitudes finds the requested house reads that houses middle longitude converts the longitude into a zodiac sign. This gives the sign occupied by the actual house midpoint rather than the counted sign from Lagna.\n\n**Signature:** `HouseBhavaChalitSign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseChaturthamshaD4Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseChaturthamshaD4Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseChaturthamshaD4Sign"
              ]
            },
            "description": "Returns the Chaturthamsha D4 sign for a house using the midpoint of House 1 as the reference. The method 1. finds the D4 sign of House 1 2. counts forward to the requested house 3. preserves the degree value from the starting sign.\n\n**Signature:** `HouseChaturthamshaD4Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseChaturvimshamshaD24Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseChaturvimshamshaD24Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseChaturvimshamshaD24Sign"
              ]
            },
            "description": "Returns the Chaturvimshamsha D24 sign for a house using the midpoint of House 1 as the starting reference. The method finds the D24 sign of House 1 counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseChaturvimshamshaD24Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseConstellation"
              ]
            },
            "description": "Returns the constellation located at the middle longitude of a house. The method gets all house longitude ranges finds the requested house reads the houses middle longitude converts that longitude into a Constellation.\n\n**Signature:** `HouseConstellation(HouseNamehouseNumber,Timetime)`  \n**Returns:** `Constellation`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseConstellationLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseConstellationLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseConstellationLord"
              ]
            },
            "description": "Returns the constellation lord of a specific house. The method gets the constellation at the middle longitude of the requested house and then returns that constellations planetary lord.\n\n**Signature:** `HouseConstellationLord(HouseNamehouseNumber,Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseCountedFromInputHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputHouseNumber\": 1,\n  \"CountToNextHouse\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseCountedFromInputHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseCountedFromInputHouse"
              ]
            },
            "description": "Counts forward from a starting house number and returns the house reached after the requested count. For example this can answer questions like Which house is the 4th from the 5th house The starting house is counted as 1.\n\n**Signature:** `HouseCountedFromInputHouse(intinputHouseNumber,intcountToNextHouse)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `inputHouseNumber` (`Int32`): The starting house number.\n- `countToNextHouse` (`Int32`): The inclusive count to advance."
          },
          "response": []
        },
        {
          "name": "HouseDashamamshaD10Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseDashamamshaD10Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseDashamamshaD10Sign"
              ]
            },
            "description": "Returns the Dashamamsha D10 sign for a house based on the D10 sign of House 1. The method finds the D10 sign of House 1 counts forward to the requested house preserves the degree value from the starting sign.\n\n**Signature:** `HouseDashamamshaD10Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseDrekkanaD3Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseDrekkanaD3Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseDrekkanaD3Sign"
              ]
            },
            "description": "Returns the Drekkana D3 sign for a house based on the Drekkana sign of House 1. The method finds the midpoint sign of House 1 in Drekkana terms counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseDrekkanaD3Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseDwadashamshaD12Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseDwadashamshaD12Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseDwadashamshaD12Sign"
              ]
            },
            "description": "Returns the Dwadashamsha D12 sign for a house using the midpoint of House 1 as the reference. The method 1. finds the D12 sign of House 1 2. counts forward to the requested house 3. preserves the degree component from the starting sign.\n\n**Signature:** `HouseDwadashamshaD12Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseFromPlanetByAspectOrKendra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Reference\": {\n    \"Name\": \"Sun\"\n  },\n  \"Target\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseFromPlanetByAspectOrKendra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseFromPlanetByAspectOrKendra"
              ]
            },
            "description": "Returns the target planets signbased house if the target is meaningfully connected to the reference planet. The method checks two possible connections whether the target is in a Kendra from the reference planet whether the target aspects the reference planet. If either condition is true the targets signbased house is returned. Otherwise the default HouseName value is returned.\n\n**Signature:** `HouseFromPlanetByAspectOrKendra(PlanetNamereference,PlanetNametarget,Timetime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `reference` (`PlanetName`): The planet used as the reference point.\n- `target` (`PlanetName`): The planet being checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseFromSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacName\": \"Aries\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseFromSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseFromSignName"
              ]
            },
            "description": "Finds the house that contains a given zodiac sign using Rasistyle house mapping.\n\n**Signature:** `HouseFromSignName(ZodiacNamezodiacName,TimeinputTime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `zodiacName` (`ZodiacName`): The sign to locate.\n- `inputTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseHoraD2Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseHoraD2Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseHoraD2Sign"
              ]
            },
            "description": "Returns the Hora D2 sign of a house using the midpoint of House 1 as the starting reference. The method 1. finds the Hora sign of House 1 2. counts forward by the requested house number 3. preserves the degree component from the starting sign.\n\n**Signature:** `HouseHoraD2Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseJunctionPoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PreviousHouse\": {\n    \"TotalDegrees\": \"180\"\n  },\n  \"NextHouse\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseJunctionPoint",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseJunctionPoint"
              ]
            },
            "description": "Calculates the junction point between two house longitudes. The method finds the midpoint between a previous and next house longitude normalizes the result to the 360degree circle and returns it as an Angle.\n\n**Signature:** `HouseJunctionPoint(AnglepreviousHouse,AnglenextHouse)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `previousHouse` (`Angle`): Longitude of the previous house point.\n- `nextHouse` (`Angle`): Longitude of the next house point."
          },
          "response": []
        },
        {
          "name": "HouseKhavedamshaD40Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseKhavedamshaD40Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseKhavedamshaD40Sign"
              ]
            },
            "description": "Returns the Khavedamsha D40 sign for a house using the midpoint of House 1 as the reference. The method 1. finds the D40 sign of House 1 2. counts forward to the requested house 3. preserves the degree component from the starting sign.\n\n**Signature:** `HouseKhavedamshaD40Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseLongitude"
              ]
            },
            "description": "Returns the longitude data for a specific house. The method checks the cache gets all house longitudes selects the requested house returns the corresponding House object.\n\n**Signature:** `HouseLongitude(HouseNamehouseNumber,Timetime)`  \n**Returns:** `House`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house whose longitude data should be returned.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseNatureScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"InputHouse\": \"House1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseNatureScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseNatureScore"
              ]
            },
            "description": "Calculates a brelative nature scoreb for a house based on house strength. The method 1. returns c0c immediately if no valid house is supplied 2. calculates the selected houses strength 3. finds the strongest and weakest houses in the chart 4. remaps the selected houses strength onto a simplified scoring range. This helper is designed for summarystyle interpretation rather than precise technical measurement.\n\n**Signature:** `HouseNatureScore(TimebirthTime,HouseNameinputHouse)`  \n**Returns:** `Double`\n\n**Parameters**\n- `birthTime` (`Time`): The natal chart time.\n- `inputHouse` (`HouseName`): The house to score."
          },
          "response": []
        },
        {
          "name": "HouseNavamshaD9Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseNavamshaD9Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseNavamshaD9Sign"
              ]
            },
            "description": "Returns the Navamsha D9 sign for a house using the midpoint of House 1 as the reference. The method 1. finds the D9 sign of House 1 2. counts forward to the requested house 3. preserves the degree component from the starting sign.\n\n**Signature:** `HouseNavamshaD9Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HousePlanetOccupiesBasedOnLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HousePlanetOccupiesBasedOnLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HousePlanetOccupiesBasedOnLongitudes"
              ]
            },
            "description": "Finds the house occupied by a planet using house longitude ranges. The method gets the planets Nirayana longitude loads all house longitude ranges checks which house range contains the planet returns that house.\n\n**Signature:** `HousePlanetOccupiesBasedOnLongitudes(PlanetNameplanetName,Timetime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to locate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HousePlanetOccupiesBasedOnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HousePlanetOccupiesBasedOnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HousePlanetOccupiesBasedOnSign"
              ]
            },
            "description": "Finds the house occupied by a planet using signbased house assignment. The method gets the planets Rasi sign gets the Rasi sign assigned to every house returns the house whose sign matches the planets sign.\n\n**Signature:** `HousePlanetOccupiesBasedOnSign(PlanetNameplanetName,Timetime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to locate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseRasiSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseRasiSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseRasiSign"
              ]
            },
            "description": "Returns the Rasi sign of a house by counting from the sign of House 1 Lagna. The method 1. finds the sign at the midpoint of House 1 2. counts forward by the requested house number 3. returns the resulting sign while preserving the same degree position within the sign. This is the housesign calculation used for Rasistyle house mapping.\n\n**Signature:** `HouseRasiSign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseSaptamshaD7Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseSaptamshaD7Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseSaptamshaD7Sign"
              ]
            },
            "description": "Returns the Saptamsha D7 sign for a house based on the D7 sign of House 1. The method finds the midpoint sign of House 1 in D7 terms counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseSaptamshaD7Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseShashtyamshaD60Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseShashtyamshaD60Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseShashtyamshaD60Sign"
              ]
            },
            "description": "Returns the Shashtyamsha D60 sign for a house based on the D60 sign of House 1. The method finds the D60 sign of House 1 counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseShashtyamshaD60Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseShodashamshaD16Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseShodashamshaD16Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseShodashamshaD16Sign"
              ]
            },
            "description": "Returns the Shodashamsha D16 sign for a house using the midpoint of House 1 as the reference. The method finds the D16 sign of House 1 counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseShodashamshaD16Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseSignName"
              ]
            },
            "description": "Returns only the zodiac sign name for the specified house at the given time. The method calls HouseRasiSign... and extracts just the sign name from the fuller ZodiacSign result.\n\n**Signature:** `HouseSignName(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HousesInAspect",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HousesInAspect",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HousesInAspect"
              ]
            },
            "description": "Returns all houses aspected by a planet. The method calculates the signs aspected by the planet checks the sign assigned to each house returns the houses whose signs are included in the aspectedsign list.\n\n**Signature:** `HousesInAspect(PlanetNameplanet,Timetime)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet casting aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HousesOwnedByPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HousesOwnedByPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HousesOwnedByPlanet"
              ]
            },
            "description": "Returns all houses owned by a planet at a given time. The method gets the zodiac signs ruled by the planet gets the sign assigned to every house using Bhava Chalit signs returns the houses whose signs are ruled by the input planet.\n\n**Signature:** `HousesOwnedByPlanet(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose owned houses should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputHouse\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseStrength"
              ]
            },
            "description": "Calculates the total Bhava Bala or house strength for a specific house. The method combines three housestrength components Bhavadhipathi Bala strength of the house lord. Bhava Dig Bala directional or signtype strength of the house. Bhava Drishti Bala aspect strength received by the house. The method calculates each component for all houses adds the three values together for each house and returns the total strength of the requested house.\n\n**Signature:** `HouseStrength(HouseNameinputHouse,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `inputHouse` (`HouseName`): The house whose total strength should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseStrengthCategory",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseStrengthCategory",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseStrengthCategory"
              ]
            },
            "description": "Classifies a houses strength relative to the other houses in the same chart. The method calculates the strength of all twelve houses sorts the houses by strength splits the list into three tiers bottom third Weak middle third Average top third Strong returns the category for the requested house.\n\n**Signature:** `HouseStrengthCategory(HouseNamehouse,TimebirthTime)`  \n**Returns:** `Strength`\n\n**Parameters**\n- `house` (`HouseName`): The house to classify.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseTrimshamshaD30Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseTrimshamshaD30Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseTrimshamshaD30Sign"
              ]
            },
            "description": "Returns the Trimshamsha D30 sign for a house based on the D30 sign of House 1. The method finds the midpoint sign of House 1 in D30 terms counts forward to the requested house preserves the degree portion from the starting sign.\n\n**Signature:** `HouseTrimshamshaD30Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "HouseVimshamshaD20Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/HouseVimshamshaD20Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "HouseVimshamshaD20Sign"
              ]
            },
            "description": "Returns the Vimshamsha D20 sign for a house using House 1 as the reference point. The method 1. finds the D20 sign of House 1 2. counts forward to the requested house 3. keeps the degree value from the starting sign.\n\n**Signature:** `HouseVimshamshaD20Sign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IndrachaapaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IndrachaapaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IndrachaapaLongitude"
              ]
            },
            "description": "Calculates the longitude of bIndrachaapab from Parivesha. The method 1. gets Pariveshas longitude 2. subtracts it from b360b 3. normalizes the result.\n\n**Signature:** `IndrachaapaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsAirSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MoonSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsAirSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsAirSign"
              ]
            },
            "description": "Checks whether a zodiac sign belongs to the air element. Air signs are Gemini Libra Aquarius\n\n**Signature:** `IsAirSign(ZodiacNamemoonSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `moonSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsAllMaleficsInUpachayas",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsAllMaleficsInUpachayas",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsAllMaleficsInUpachayas"
              ]
            },
            "description": "Checks whether all lagnaspecific malefic planets are placed in Upachaya houses. The method gets the complete malefic list for the charts Lagna checks each planets house placement returns false if any malefic is outside an Upachaya house returns true only when all malefics are in Upachayas.\n\n**Signature:** `IsAllMaleficsInUpachayas(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsAllPlanetsInHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetList\": [\n    \"Moon\",\n    \"Mars\"\n  ],\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsAllPlanetsInHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsAllPlanetsInHouse"
              ]
            },
            "description": "Checks whether every planet in a supplied list is in the same requested house. The method tests each planet using signbased house placement and returns false as soon as one planet is outside the requested house.\n\n**Signature:** `IsAllPlanetsInHouse(List<PlanetName>planetList,HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetList` (`List<PlanetName>`): The planets to check.\n- `houseNumber` (`HouseName`): The house all planets are expected to occupy.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsAnyPlanetsInHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetList\": [\n    \"Moon\",\n    \"Mars\"\n  ],\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsAnyPlanetsInHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsAnyPlanetsInHouse"
              ]
            },
            "description": "Checks whether at least one planet in a supplied list is in the requested house. The method tests each planet using signbased house placement and returns true as soon as one match is found.\n\n**Signature:** `IsAnyPlanetsInHouse(List<PlanetName>planetList,HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetList` (`List<PlanetName>`): The planets to check.\n- `houseNumber` (`HouseName`): The house to search.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeforeSunrise",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeforeSunrise",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeforeSunrise"
              ]
            },
            "description": "Checks whether a given time occurs before sunrise on that same date and location.\n\n**Signature:** `IsBeforeSunrise(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The time to compare against sunrise."
          },
          "response": []
        },
        {
          "name": "IsBeneficPlanetAspectHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficPlanetAspectHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficPlanetAspectHouse"
              ]
            },
            "description": "Checks whether any lagnaspecific benefic planet aspects a given house. The method delegates to BeneficPlanetsAspectingHouse....\n\n**Signature:** `IsBeneficPlanetAspectHouse(HouseNamehouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeneficPlanetInHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficPlanetInHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficPlanetInHouse"
              ]
            },
            "description": "Checks whether any complete lagnaspecific benefic planet occupies a given house. The method gets all planets in the requested house using signbased placement gets the complete benefic planet list for the chart checks whether any planet in the house appears in that benefic list.\n\n**Signature:** `IsBeneficPlanetInHouse(HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeneficPlanetInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficPlanetInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficPlanetInSign"
              ]
            },
            "description": "Checks whether any lagnaspecific benefic planet is located in a given sign. The method delegates to BeneficPlanetListInSign....\n\n**Signature:** `IsBeneficPlanetInSign(ZodiacNamesign,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sign` (`ZodiacName`): The sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeneficsInKendra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficsInKendra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficsInKendra"
              ]
            },
            "description": "Checks whether any lagnaspecific benefic planet is placed in a Kendra house. The method gets the complete benefic planet list checks whether any benefic is in a Kendra returns true on the first match.\n\n**Signature:** `IsBeneficsInKendra(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeneficsInSignsFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromList\": [\n    1,\n    3,\n    5\n  ],\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficsInSignsFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficsInSignsFromLagna"
              ]
            },
            "description": "Checks whether any lagnaspecific benefic planet is present in selected signs counted from Lagna. The method gets the complete benefic planet list for the chart checks the requested counted signs from the Ascendant returns whether any benefic appears there.\n\n**Signature:** `IsBeneficsInSignsFromLagna(int[]signsFromList,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `signsFromList` (`Int32[]`): The inclusive sign counts from Lagna to inspect.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsBeneficsInSignsFromPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromList\": [\n    1,\n    3,\n    5\n  ],\n  \"StartPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsBeneficsInSignsFromPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsBeneficsInSignsFromPlanet"
              ]
            },
            "description": "Checks whether any lagnaspecific benefic planet is present in selected signs counted from a reference planet. The method gets the complete benefic planet list for the chart checks the requested counted signs from the reference planet returns whether any benefic appears there.\n\n**Signature:** `IsBeneficsInSignsFromPlanet(int[]signsFromList,PlanetNamestartPlanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `signsFromList` (`Int32[]`): The inclusive sign counts to inspect.\n- `startPlanet` (`PlanetName`): The planet used as the counting reference.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsCommonSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SunSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsCommonSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsCommonSign"
              ]
            },
            "description": "Checks whether a zodiac sign is common dual. Common signs are Gemini Virgo Sagittarius Pisces\n\n**Signature:** `IsCommonSign(ZodiacNamesunSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sunSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsCruelNavamsa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"NavamsaSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsCruelNavamsa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsCruelNavamsa"
              ]
            },
            "description": "Checks whether a Navamsha sign is considered cruel. The method returns true for signs ruled by Mars or Saturn Aries Scorpio Capricorn Aquarius\n\n**Signature:** `IsCruelNavamsa(ZodiacNamenavamsaSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `navamsaSign` (`ZodiacName`): The Navamsha sign to classify."
          },
          "response": []
        },
        {
          "name": "IsDayBirth",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsDayBirth",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsDayBirth"
              ]
            },
            "description": "Checks whether the supplied birth time occurs between sunrise and sunset. The method treats sunrise as included and sunset as excluded.\n\n**Signature:** `IsDayBirth(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsEarthquakeJupiterInKendraFromAscendant",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeJupiterInKendraFromAscendant",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeJupiterInKendraFromAscendant"
              ]
            },
            "description": "At the times of severe earthquakes Jupiter is placed in an angle Kendra from the rising sign at the time of the earthquake occurrence p.59 Jupiter in houses 1 4 7 or 10 from the ascendant. NOTE Locationdependent requires geographic location for ascendant calculation.\n\n**Signature:** `IsEarthquakeJupiterInKendraFromAscendant(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeJupiterSaturnConjunction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeJupiterSaturnConjunction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeJupiterSaturnConjunction"
              ]
            },
            "description": "Two of the worst earthquakes occurred in 1960 perhaps due to JupiterSaturn remaining in the same sign p.73\n\n**Signature:** `IsEarthquakeJupiterSaturnConjunction(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeJupiterSaturnOpposition",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeJupiterSaturnOpposition",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeJupiterSaturnOpposition"
              ]
            },
            "description": "Jupiter and Saturn are in opposite signs p.73 Assam earthquake 1950 JupiterSaturn opposition is associated with the strongest earthquakes.\n\n**Signature:** `IsEarthquakeJupiterSaturnOpposition(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMajorPlanetsInAirySigns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMajorPlanetsInAirySigns",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMajorPlanetsInAirySigns"
              ]
            },
            "description": "Major planets generally occupy airy signs p.66 rule 5 Airy signs Gemini Libra Aquarius. Seven bodies are disposed in mutual Trikona Rasis in airy signs p.68 Threshold 2 of Mars Saturn Rahu Jupiter in airy signs lowered from 3 per audit.\n\n**Signature:** `IsEarthquakeMajorPlanetsInAirySigns(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMajorPlanetsInEarthySigns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMajorPlanetsInEarthySigns",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMajorPlanetsInEarthySigns"
              ]
            },
            "description": "Major planets generally occupy earthy signs p.66 rule 5 Earthy signs Taurus Virgo Capricorn. Threshold 2 of Mars Saturn Rahu Jupiter in earthy signs lowered from 3 per audit.\n\n**Signature:** `IsEarthquakeMajorPlanetsInEarthySigns(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMajorPlanetsInMutualKendras",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMajorPlanetsInMutualKendras",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMajorPlanetsInMutualKendras"
              ]
            },
            "description": "The major planets Mars Saturn Rahu and Jupiter will be in mutual angles Kendras or trines Trikonas p.66 rule 3 Checks if at least 3 of these 4 major planets are in KendraTrikona from each other.\n\n**Signature:** `IsEarthquakeMajorPlanetsInMutualKendras(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMaleficsNearMeridian",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMaleficsNearMeridian",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMaleficsNearMeridian"
              ]
            },
            "description": "Mars was exactly in the 10th house Japan 1923 p.71 Both Jupiter and Saturn are near the lower meridian Persia 1960 p.75 The locality is indicated in places where Saturn or Jupiter is on the meridian p.62 Checks if Saturn Mars or Jupiter are in houses 4 or 10 meridiannadir. NOTE Locationdependent requires geographic location for house calculation.\n\n**Signature:** `IsEarthquakeMaleficsNearMeridian(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMarsJupiterInKendras",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMarsJupiterInKendras",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMarsJupiterInKendras"
              ]
            },
            "description": "Jupiter and Mars are in mutual square Kendra China 1976 p.65 Mars and Jupiter are in mutual trines Assam 1950 p.73 Jupiter and Mars are in square Iran 1978 p.79 Iran 1990 p.80 MarsJupiter angular relationship is cited in MORE earthquake charts than SaturnMars.\n\n**Signature:** `IsEarthquakeMarsJupiterInKendras(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMercurySaturnConjunction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMercurySaturnConjunction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMercurySaturnConjunction"
              ]
            },
            "description": "Mercury is in conjunction with both the Moon and Saturn Assam 1950 p.73 MercurySaturn conjunction appears alongside MoonMercury in several earthquake charts. Orb of 15 degrees since Saturn moves slowly.\n\n**Signature:** `IsEarthquakeMercurySaturnConjunction(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMoonMercuryConjunction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMoonMercuryConjunction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMoonMercuryConjunction"
              ]
            },
            "description": "The most important feature is again the closeness of the Moon and Mercury p.65 MoonMercury conjunction appears in nearly every earthquake chart in the book. Wider orb version within 10 degrees for general conjunction tracking.\n\n**Signature:** `IsEarthquakeMoonMercuryConjunction(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMoonMercuryExactConjunction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMoonMercuryExactConjunction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMoonMercuryExactConjunction"
              ]
            },
            "description": "The most important feature is again the closeness of the Moon and Mercury p.65 EXACT conjunction within 3 degrees strongest form of MoonMercury indicator. Appears in virtually every major earthquake chart in BV Ramans study. Charts China 1976 p.65 Assam 1950 p.72 Agadir 1960 p.74 Iran 1990 p.80.\n\n**Signature:** `IsEarthquakeMoonMercuryExactConjunction(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeMoonNearPerigee",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeMoonNearPerigee",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeMoonNearPerigee"
              ]
            },
            "description": "Moon was in perigee Manila 1887 p.69 Moon was near perigee Assam 1950 p.73. Moon at perigee closest to Earth amplifies gravitational stress on tectonic plates. Moons average daily motion is 13.2 degday. At perigee it exceeds 14.5 degday. Uses Moons speed as a proxy for perigee proximity.\n\n**Signature:** `IsEarthquakeMoonNearPerigee(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeNearEclipse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeNearEclipse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeNearEclipse"
              ]
            },
            "description": "Earthquakes generally occur at the times of eclipses p.66 rule 1 p.61 p.6871 Eclipse proximity is one of the most frequently cited indicators in the book. Solar eclipse Sun near RahuKetu near New Moon Lunar eclipse Sun near RahuKetu near Full Moon. Charts Argentina 1887 annular solar eclipse on 22nd Manila 1887 total lunar eclipse June 1 Java 1882 annular solar eclipse Nov 10 Japan 1923 lunar eclipse Aug 26 Iran 1978.\n\n**Signature:** `IsEarthquakeNearEclipse(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeNearFullMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeNearFullMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeNearFullMoon"
              ]
            },
            "description": "Earthquakes generally occur near full Moon days p.66 Full Moon Purnima lunar day 15. Checks within 3 tithis. Chart Iran 1978 Chart 13 occurred just after full Moon p.79.\n\n**Signature:** `IsEarthquakeNearFullMoon(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeNearNewMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeNearNewMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeNearNewMoon"
              ]
            },
            "description": "Earthquakes generally occur at the times of eclipses and near new Moon days p.66 New Moon Amavasya lunar day 30 or 1. Checks within 3 tithis. Charts Bihar 1934 Chart 1 China 1976 Chart 2 Agadir 1960 Chart 9 Iran 1990 Chart 14.\n\n**Signature:** `IsEarthquakeNearNewMoon(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakePlanetsClusteredInNarrowArc",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakePlanetsClusteredInNarrowArc",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakePlanetsClusteredInNarrowArc"
              ]
            },
            "description": "Except Jupiter and RahuKetu the rest were all clustered within an arc of 38 p.65 Checks if 5 planets fall within a 40degree arc. China 1976.\n\n**Signature:** `IsEarthquakePlanetsClusteredInNarrowArc(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakePrithviMandalaRuling",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakePrithviMandalaRuling",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakePrithviMandalaRuling"
              ]
            },
            "description": "The asterism of the day belongs to Prithvi Earth Mandala p.66 rule 6 Using BV Ramans Indra Mandala nakshatras p.28 which he associates with terrestrial disturbances fear from fire poverty crops fail. Nakshatras Rohini Anuradha Jyeshta Uttarashadha Sravana Dhanishta.\n\n**Signature:** `IsEarthquakePrithviMandalaRuling(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeSaturnMarsInKendras",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeSaturnMarsInKendras",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeSaturnMarsInKendras"
              ]
            },
            "description": "Not only were the major planets Saturn and Mars in mutual angles p.67 SaturnMars in Kendras is a classic earthquake indicator. Kendras houses 1 4 7 10 from each other. Charts Calcutta 1737 Chart 3 Java 1882 Chart 6.\n\n**Signature:** `IsEarthquakeSaturnMarsInKendras(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthquakeVayuMandalaRuling",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthquakeVayuMandalaRuling",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthquakeVayuMandalaRuling"
              ]
            },
            "description": "The asterism of the day belongs to Vayu Wind Mandala p.66 rule 6 Vayu Mandala nakshatras per BV Raman p.28 fear from kings storms and scarcity. Nakshatras Aswini Mrigasira Punarvasu Uttara Hasta Chitta Swathi.\n\n**Signature:** `IsEarthquakeVayuMandalaRuling(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsEarthSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MoonSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEarthSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEarthSign"
              ]
            },
            "description": "Checks whether a zodiac sign belongs to the earth element. Earth signs are Taurus Virgo Capricorn\n\n**Signature:** `IsEarthSign(ZodiacNamemoonSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `moonSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsEvenSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetSignName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsEvenSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsEvenSign"
              ]
            },
            "description": "Checks whether a zodiac sign is evennumbered. Even signs are Taurus Cancer Virgo Scorpio Capricorn Pisces\n\n**Signature:** `IsEvenSign(ZodiacNameplanetSignName)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetSignName` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsFireSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MoonSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsFireSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsFireSign"
              ]
            },
            "description": "Checks whether a zodiac sign belongs to the fire element. Fire signs are Aries Leo Sagittarius\n\n**Signature:** `IsFireSign(ZodiacNamemoonSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `moonSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsFixedSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SunSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsFixedSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsFixedSign"
              ]
            },
            "description": "Checks whether a zodiac sign is fixed. Fixed signs are Taurus Leo Scorpio Aquarius\n\n**Signature:** `IsFixedSign(ZodiacNamesunSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sunSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsFullMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsFullMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsFullMoon"
              ]
            },
            "description": "Checks whether the Moon is at the fullmoon Tithi for the supplied time. The method calculates the lunar day and returns true when the lunarday number is 15.\n\n**Signature:** `IsFullMoon(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsGocharaObstructed",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"GocharaHouse\": 1,\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CurrentTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsGocharaObstructed",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsGocharaObstructed"
              ]
            },
            "description": "Checks whether a given Gochara transit is obstructed by Vedha Vedhanka. The method looks up the obstruction point for the planet and transit house exits early if no Vedhanka exists finds all planets currently transiting that obstruction house removes the standard exception pairs Sun and Saturn Moon and Mercury returns true if any obstructing planet remains. This method applies the Vedha rule layer used to suppress or modify an otherwise valid Gochara result.\n\n**Signature:** `IsGocharaObstructed(PlanetNameplanet,intgocharaHouse,TimebirthTime,TimecurrentTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The transiting planet being evaluated.\n- `gocharaHouse` (`Int32`): The Gochara house number being tested.\n- `birthTime` (`Time`): The natives birth time.\n- `currentTime` (`Time`): The transit time being evaluated."
          },
          "response": []
        },
        {
          "name": "IsGocharaOccurring",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"GocharaHouse\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsGocharaOccurring",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsGocharaOccurring"
              ]
            },
            "description": "Checks whether a specific Gochara event is currently occurring for a planet in a given house while also honoring Vedha obstruction rules when enabled. The method checks whether the planet is in the requested Gochara house optionally checks whether the transit is obstructed by Vedhanka returns true only if the house match is valid and no obstruction remains. This acts as a practical wrapper for higherlevel Gochara event calculations.\n\n**Signature:** `IsGocharaOccurring(TimebirthTime,Timetime,PlanetNameplanet,intgocharaHouse)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `time` (`Time`): The transit time to evaluate.\n- `planet` (`PlanetName`): The transiting planet.\n- `gocharaHouse` (`Int32`): The Gochara house that should be active."
          },
          "response": []
        },
        {
          "name": "IsHarmfulPlanetAspectingHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHarmfulPlanetAspectingHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHarmfulPlanetAspectingHouse"
              ]
            },
            "description": "Checks whether any physically harmful planet aspects a given house. The method delegates to PhysicallyHarmfulPlanetsAspectingHouse... and checks whether any matching planets exist.\n\n**Signature:** `IsHarmfulPlanetAspectingHouse(HouseNamehouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsHouseAspectedByPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceiveingAspect\": \"House1\",\n  \"TransmitingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseAspectedByPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseAspectedByPlanet"
              ]
            },
            "description": "Checks whether a planet aspects a given house. The method gets all houses aspected by the transmitting planet checks whether the requested house appears in that list.\n\n**Signature:** `IsHouseAspectedByPlanet(HouseNamereceiveingAspect,PlanetNametransmitingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receiveingAspect` (`HouseName`): The house receiving the aspect.\n- `transmitingAspect` (`PlanetName`): The planet casting the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsHouseLordInHouseBasedOnLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LordHouse\": \"House1\",\n  \"OccupiedHouse\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseLordInHouseBasedOnLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseLordInHouseBasedOnLongitudes"
              ]
            },
            "description": "Checks whether the lord of one house is located in another specified house using longitudebased house placement. The method finds the lord of lordHouse finds which house that lord occupies using house longitude boundaries compares the occupied house with the requested occupiedHouse.\n\n**Signature:** `IsHouseLordInHouseBasedOnLongitudes(HouseNamelordHouse,HouseNameoccupiedHouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `lordHouse` (`HouseName`): The house whose lord should be checked.\n- `occupiedHouse` (`HouseName`): The house where the lord is expected to be.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsHouseLordInHouseBasedOnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LordHouse\": \"House1\",\n  \"OccupiedHouse\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseLordInHouseBasedOnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseLordInHouseBasedOnSign"
              ]
            },
            "description": "Checks whether the lord of one house is located in another specified house using signbased house placement. The method finds the lord of lordHouse finds which house that lord occupies by sign compares the result with occupiedHouse.\n\n**Signature:** `IsHouseLordInHouseBasedOnSign(HouseNamelordHouse,HouseNameoccupiedHouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `lordHouse` (`HouseName`): The house whose lord should be checked.\n- `occupiedHouse` (`HouseName`): The house where the lord is expected to be.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsHouseSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Sign\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseSignName"
              ]
            },
            "description": "Checks whether a given house is in a specific zodiac sign at the supplied time. This is a convenience method that compares the current sign of the house against the expected sign and returns a simple trueorfalse result.\n\n**Signature:** `IsHouseSignName(HouseNamehouse,ZodiacNamesign,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house to test.\n- `sign` (`ZodiacName`): The zodiac sign to compare against.\n- `time` (`Time`): The time of the chart."
          },
          "response": []
        },
        {
          "name": "IsHouseStrongInShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseStrongInShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseStrongInShadbala"
              ]
            },
            "description": "Checks whether a house belongs to the strongest third of all houses by housestrength score. The method delegates to HouseStrengthCategory....\n\n**Signature:** `IsHouseStrongInShadbala(HouseNamehouse,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsHouseWeakInShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsHouseWeakInShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsHouseWeakInShadbala"
              ]
            },
            "description": "Checks whether a house belongs to the weakest third of all houses by housestrength score. The method delegates to HouseStrengthCategory....\n\n**Signature:** `IsHouseWeakInShadbala(HouseNamehouse,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IshtaKaala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IshtaKaala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IshtaKaala"
              ]
            },
            "description": "Calculates Ishta Kaala also known as Suryodayadi Jananakala Ghatika. This is the number of ghatis elapsed from sunrise to the moment of birth. The method checks whether the birth time is before sunrise uses the previous days sunrise when needed measures the time elapsed from the relevant sunrise converts hours into ghatis using the rule 1 hour 2.5 ghatis returns the result as an Angle.\n\n**Signature:** `IshtaKaala(TimebirthTime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsMaleficPlanetAspectHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMaleficPlanetAspectHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMaleficPlanetAspectHouse"
              ]
            },
            "description": "Checks whether any lagnaspecific malefic planet aspects a given house. The method gets the complete malefic planet list for the charts Lagna checks whether any of those planets aspect the requested house returns the result.\n\n**Signature:** `IsMaleficPlanetAspectHouse(HouseNamehouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `house` (`HouseName`): The house receiving the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMaleficPlanetInHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMaleficPlanetInHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMaleficPlanetInHouse"
              ]
            },
            "description": "Checks whether any lagnaspecific malefic planet occupies a given house. The method gets all planets in the requested house using signbased placement gets the complete malefic list for the charts Lagna checks whether any planet in the house appears in that malefic list.\n\n**Signature:** `IsMaleficPlanetInHouse(HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMaleficPlanetInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMaleficPlanetInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMaleficPlanetInSign"
              ]
            },
            "description": "Checks whether any lagnaspecific malefic planet is located in a given sign. The method delegates to MaleficPlanetListInSign... and checks whether the result contains any planets.\n\n**Signature:** `IsMaleficPlanetInSign(ZodiacNamesign,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sign` (`ZodiacName`): The zodiac sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMercuryAfflicted",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMercuryAfflicted",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMercuryAfflicted"
              ]
            },
            "description": "Checks whether Mercury is afflicted by malefic association. This method is an alias for IsMercuryAfflictedByMalefics... retained to match naming patterns used elsewhere in the codebase.\n\n**Signature:** `IsMercuryAfflicted(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMercuryAfflictedByMalefics",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMercuryAfflictedByMalefics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMercuryAfflictedByMalefics"
              ]
            },
            "description": "Checks whether Mercury is afflicted through conjunction with malefic planets. The method checks whether Mercury is conjunct with any relevant malefic returns true immediately if such a conjunction exists checks whether Mercury is conjunct with benefics returns false if Mercury is protected by benefic association returns false when Mercury is not conjunct any planet.\n\n**Signature:** `IsMercuryAfflictedByMalefics(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMercuryMalefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMercuryMalefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMercuryMalefic"
              ]
            },
            "description": "Checks whether Mercury is malefic for the specific Lagna at the given time. The method requires both conditions to be true Mercury must be a malefic lord for the current Lagna. Mercury must be afflicted by association with malefics.\n\n**Signature:** `IsMercuryMalefic(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMoonBenefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMoonBenefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMoonBenefic"
              ]
            },
            "description": "Checks whether the Moon is benefic based on its lunarday position. The method calculates the lunar day number returns true when the lunar day falls from 8 through 23 returns false otherwise.\n\n**Signature:** `IsMoonBenefic(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsMovableSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SunSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsMovableSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsMovableSign"
              ]
            },
            "description": "Checks whether a zodiac sign is movable. Movable signs are Aries Cancer Libra Capricorn\n\n**Signature:** `IsMovableSign(ZodiacNamesunSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sunSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsNaraRasi",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsNaraRasi",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsNaraRasi"
              ]
            },
            "description": "Checks whether a zodiac sign is treated as Nara Rasi or a human sign. The implementation returns true for Gemini Virgo Libra Aquarius Sagittarius\n\n**Signature:** `IsNaraRasi(ZodiacNamesign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `sign` (`ZodiacName`): The zodiac sign to check."
          },
          "response": []
        },
        {
          "name": "IsNewMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsNewMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsNewMoon"
              ]
            },
            "description": "Checks whether the Moon is at the newmoon Tithi for the supplied time. The method calculates the lunar day and returns true when the lunarday number is 1 or 0.\n\n**Signature:** `IsNewMoon(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsNightBirth",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsNightBirth",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsNightBirth"
              ]
            },
            "description": "Checks whether the supplied birth time occurs during the night period. Night is treated as the inverse of day birth.\n\n**Signature:** `IsNightBirth(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsOddSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetSignName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsOddSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsOddSign"
              ]
            },
            "description": "Checks whether a zodiac sign is oddnumbered. Odd signs are Aries Gemini Leo Libra Sagittarius Aquarius\n\n**Signature:** `IsOddSign(ZodiacNameplanetSignName)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetSignName` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsPlanetAfflicted",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAfflicted",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAfflicted"
              ]
            },
            "description": "Performs an enhanced affliction check for a planet. The method treats a planet as afflicted when any of the following are true the planet is combust except for the Sun the planet is debilitated the planet is in an enemy sign the planet is aspected by a natural malefic the planet is aspected by the Sun the planet is aspected by a planet with an enemy or bitterenemy relationship the planet is conjunct with a natural malefic the planet is conjunct with the Sun the planet is conjunct with a planet that has an enemy or bitterenemy relationship.\n\n**Signature:** `IsPlanetAfflicted(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAfflictedSpecificallyByPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"AfflictedPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"DamagingPlanets\": [\n    \"Mars\",\n    \"Jupiter\"\n  ],\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAfflictedSpecificallyByPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAfflictedSpecificallyByPlanets"
              ]
            },
            "description": "Checks whether a planet is afflicted specifically by a supplied list of damaging planets. For each damaging planet the method verifies the damaging planet is not the afflicted planet itself the damaging planet is either in the same signbased house or aspecting the afflicted planet the damaging planet is harmful by one of these standards natural malefic Sun enemy or bitterenemy relationship. If any damaging planet fails the required conditions the method returns false.\n\n**Signature:** `IsPlanetAfflictedSpecificallyByPlanets(PlanetNameafflictedPlanet,PlanetName[]damagingPlanets,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `afflictedPlanet` (`PlanetName`): The planet being tested for affliction.\n- `damagingPlanets` (`PlanetName[]`): The specific planets expected to afflict it.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByBeneficPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Lord\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByBeneficPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByBeneficPlanets"
              ]
            },
            "description": "Checks whether a planet receives an aspect from any lagnaspecific benefic planet. The method delegates to BeneficPlanetsAspectingPlanet....\n\n**Signature:** `IsPlanetAspectedByBeneficPlanets(PlanetNamelord,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `lord` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByEnemyPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByEnemyPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByEnemyPlanets"
              ]
            },
            "description": "Checks whether a planet receives an aspect from any planet that is an enemy by combined relationship. The method gets all planets aspecting the input planet evaluates each aspecting planets combined relationship to the input planet returns true if any aspecting planet is an enemy or bitter enemy.\n\n**Signature:** `IsPlanetAspectedByEnemyPlanets(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByFriendPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByFriendPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByFriendPlanets"
              ]
            },
            "description": "Checks whether a planet receives an aspect from any planet that is friendly by combined relationship. The method gets all planets aspecting the input planet evaluates each aspecting planets combined relationship to the input planet returns true if any aspecting planet is a friend or best friend.\n\n**Signature:** `IsPlanetAspectedByFriendPlanets(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByMaleficPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByMaleficPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByMaleficPlanets"
              ]
            },
            "description": "Checks whether a planet receives any aspect from lagnaspecific malefic planets. The method delegates to MaleficPlanetsAspectingPlanet... and returns whether any matching aspect exists.\n\n**Signature:** `IsPlanetAspectedByMaleficPlanets(PlanetNamereceivingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByPhysicallyHarmfulPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByPhysicallyHarmfulPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByPhysicallyHarmfulPlanets"
              ]
            },
            "description": "Checks whether a planet receives an aspect from any physically harmful planet. The method delegates to AllPhysicallyHarmfulPlanetsAspecting... and returns whether that list is nonempty.\n\n**Signature:** `IsPlanetAspectedByPhysicallyHarmfulPlanets(PlanetNameplanetReceivingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetReceivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectedByPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceiveingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"TransmitingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectedByPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectedByPlanet"
              ]
            },
            "description": "Checks whether one planet aspects another planet. The method gets all planets aspected by the transmitting planet checks whether the receiving planet appears in that list.\n\n**Signature:** `IsPlanetAspectedByPlanet(PlanetNamereceiveingAspect,PlanetNametransmitingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receiveingAspect` (`PlanetName`): The planet receiving the aspect.\n- `transmitingAspect` (`PlanetName`): The planet casting the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectingHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectingHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectingHouse"
              ]
            },
            "description": "Checks whether a planet aspects a specific house at the given time. The method gets all houses currently aspected by the planet checks whether the target house is included in that list.\n\n**Signature:** `IsPlanetAspectingHouse(PlanetNameplanet,HouseNamehouse,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet casting the aspect.\n- `house` (`HouseName`): The house receiving the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetAspectingOwnHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetAspectingOwnHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetAspectingOwnHouse"
              ]
            },
            "description": "Checks whether a planet aspects any house that it owns. The method excludes Rahu and Ketu gets all houses currently aspected by the planet checks the lord of each aspected house returns true if any aspected house is ruled by the planet itself.\n\n**Signature:** `IsPlanetAspectingOwnHouse(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetBenefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetBenefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetBenefic"
              ]
            },
            "description": "Checks whether a planet appears in the complete lagnaspecific benefic list. The method delegates to BeneficPlanetList... and checks whether the requested planet is included.\n\n**Signature:** `IsPlanetBenefic(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetBeneficLordForLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetBeneficLordForLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetBeneficLordForLagna"
              ]
            },
            "description": "Checks whether a planet is a benefic lord for the charts Lagna based on fixed Lagnaspecific lordship rules. The method determines the Lagna sign applies the corresponding B. V. Ramanstyle beneficlord table returns whether the planet is listed as favorable for that Lagna.\n\n**Signature:** `IsPlanetBeneficLordForLagna(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetBeneficToLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetBeneficToLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetBeneficToLagna"
              ]
            },
            "description": "Checks whether a planet is benefic for the charts specific Lagna. This method is a naming alias that delegates to the complete benefic check IsPlanetBenefic....\n\n**Signature:** `IsPlanetBeneficToLagna(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetCombust",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetCombust",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetCombust"
              ]
            },
            "description": "Determines whether a planet is combust because it is too close to the Sun. The method excludes planets that are not evaluated for combustion in this implementation gets the longitudes of the planet and Sun calculates the shortest angular distance between them compares that distance against the planetspecific combustion limit.\n\n**Signature:** `IsPlanetCombust(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check for combustion.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithBeneficPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithBeneficPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithBeneficPlanets"
              ]
            },
            "description": "Checks whether a planet is conjunct with any natural benefic that also has a beneficial relationship to it. The method delegates to AllBeneficPlanetsInGoodConjunctionWith....\n\n**Signature:** `IsPlanetConjunctWithBeneficPlanets(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithEnemyPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithEnemyPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithEnemyPlanets"
              ]
            },
            "description": "Checks whether a planet is conjunct with any enemy planet. The method delegates to AllPlanetsInEnemyConjunctionWith....\n\n**Signature:** `IsPlanetConjunctWithEnemyPlanets(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithFriendPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithFriendPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithFriendPlanets"
              ]
            },
            "description": "Checks whether a planet is conjunct with any friendly planet. The method delegates to AllPlanetsInFriendConjunctionWith....\n\n**Signature:** `IsPlanetConjunctWithFriendPlanets(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithMaleficPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithMaleficPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithMaleficPlanets"
              ]
            },
            "description": "Checks whether a planet is conjunct with any functional malefic planet for the charts Lagna. The method gets the lagnaspecific malefic planet list gets the planets conjunct the input planet returns whether any conjunct planet appears in the malefic list.\n\n**Signature:** `IsPlanetConjunctWithMaleficPlanets(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet being checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithPhysicallyHarmfulPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithPhysicallyHarmfulPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithPhysicallyHarmfulPlanets"
              ]
            },
            "description": "Checks whether a planet is conjunct with any physically harmful planet. The method delegates to AllPhysicallyHarmfulPlanetsConjunctWith... and returns whether that list contains any matching planets.\n\n**Signature:** `IsPlanetConjunctWithPhysicallyHarmfulPlanets(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose conjunctions should be checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetConjunctWithPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetA\": {\n    \"Name\": \"Sun\"\n  },\n  \"PlanetB\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetConjunctWithPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetConjunctWithPlanet"
              ]
            },
            "description": "Checks whether two planets are conjunct. The method gets the conjunction list for planetA gets the conjunction list for planetB confirms that each planet appears in the others conjunction list.\n\n**Signature:** `IsPlanetConjunctWithPlanet(PlanetNameplanetA,PlanetNameplanetB,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetA` (`PlanetName`): The first planet.\n- `planetB` (`PlanetName`): The second planet.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetDebilitated",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetDebilitated",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetDebilitated"
              ]
            },
            "description": "Checks whether a planet is at its exact debilitation degree. The method gets the planets Nirayana longitude converts it into a zodiac sign and degree gets the planets debilitation point compares both the sign and wholedegree position.\n\n**Signature:** `IsPlanetDebilitated(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetDefeatedInPlanetaryWar",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetDefeatedInPlanetaryWar",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetDefeatedInPlanetaryWar"
              ]
            },
            "description": "Checks whether a planet is defeated in Graha Yuddha planetary war. The method applies the planetarywar rules documented in the source comments Only the five Tara Grahas can participate Mars Mercury Jupiter Venus Saturn Sun Moon Rahu and Ketu are excluded. A planetary war occurs only when two eligible planets are within 1 degree of each other. The planet with the lesser longitude is treated as the victor. The planet with the greater longitude is treated as defeated. A special wraparound check handles cases near the 0 360 boundary.\n\n**Signature:** `IsPlanetDefeatedInPlanetaryWar(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to test for defeat.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetExalted",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetExalted",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetExalted"
              ]
            },
            "description": "Checks whether a planet is in its exaltation sign. The method gets the planets current Rasi sign looks up the planets classical exaltation sign compares the two signs.\n\n**Signature:** `IsPlanetExalted(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetExaltedDegree",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetExaltedDegree",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetExaltedDegree"
              ]
            },
            "description": "Checks whether a planet is at its exact exaltation degree. The method gets the planets Nirayana longitude converts it into a zodiac sign and degree gets the planets exaltation point compares both the sign and wholedegree position.\n\n**Signature:** `IsPlanetExaltedDegree(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetExaltedSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetExaltedSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetExaltedSign"
              ]
            },
            "description": "Checks whether a planet is anywhere in its exaltation sign. The method calculates the planets Rasi sign gets the planets exaltation point compares only the sign names.\n\n**Signature:** `IsPlanetExaltedSign(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetFortified",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetFortified",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetFortified"
              ]
            },
            "description": "Checks whether a planet is fortified meaning strong and well supported. The method requires the planet to be strong by Shadbala either excellent placement or beneficial support no active affliction. Excellent placement means the planet is in its own sign exalted or in Moolatrikona. Beneficial support means the planet has benefic aspects or benefic conjunctions.\n\n**Signature:** `IsPlanetFortified(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetFunctionalMalefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetFunctionalMalefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetFunctionalMalefic"
              ]
            },
            "description": "Checks whether a planet is a functional or temporal malefic for the charts Lagna. The method delegates to IsPlanetMaleficForLagna... which includes lagnaspecific house lordship waning Moon logic afflicted Mercury logic Rahu and Ketu as malefics.\n\n**Signature:** `IsPlanetFunctionalMalefic(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetGocharaBindu",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"NowTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Bindu\": 5\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetGocharaBindu",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetGocharaBindu"
              ]
            },
            "description": "Checks whether a planet is currently transiting through a sign whose Ashtakavarga bindu count matches the requested value. The method finds the planets current Gochara sign count from the natal Moon converts that count back into the actual transit sign reads the planets Ashtakavarga bindu value for that sign compares it with the requested bindu count.\n\n**Signature:** `IsPlanetGocharaBindu(TimebirthTime,TimenowTime,PlanetNameplanet,intbindu)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `nowTime` (`Time`): The current transit time.\n- `planet` (`PlanetName`): The transiting planet.\n- `bindu` (`Int32`): The bindu count that should match."
          },
          "response": []
        },
        {
          "name": "IsPlanetGocharaBinduResult",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"NowTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Bindu\": 5\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetGocharaBinduResult",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetGocharaBinduResult"
              ]
            },
            "description": "Checks whether a planet is currently transiting through a sign with the requested bindu count and returns a richer explanationfriendly result. The method performs the same bindumatching logic as IsPlanetGocharaBindu... returns a negative result immediately when no match is found otherwise generates a dynamic interpretation string based on transit intensity housefromLagna placement planetary significations and Kakshya analysis.\n\n**Signature:** `IsPlanetGocharaBinduResult(TimebirthTime,TimenowTime,PlanetNameplanet,intbindu)`  \n**Returns:** `CalculatorResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `nowTime` (`Time`): The transit time being evaluated.\n- `planet` (`PlanetName`): The transiting planet.\n- `bindu` (`Int32`): The bindu count that should match."
          },
          "response": []
        },
        {
          "name": "IsPlanetHemmedByMalefics",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetHemmedByMalefics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetHemmedByMalefics"
              ]
            },
            "description": "Checks whether a planet is hemmed between malefic planets. The method finds the planets signbased house identifies the previous and next houses checks whether both adjacent houses contain lagnaspecific malefics.\n\n**Signature:** `IsPlanetHemmedByMalefics(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet being checked.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInBadAspectToHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInBadAspectToHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInBadAspectToHouse"
              ]
            },
            "description": "Checks whether a house receives any bad aspects. The method delegates to AllPlanetsInBadAspectToHouse... and checks whether the returned list is nonempty.\n\n**Signature:** `IsPlanetInBadAspectToHouse(HouseNamereceivingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receivingAspect` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInBeneficSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInBeneficSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInBeneficSign"
              ]
            },
            "description": "Checks whether a planet is placed in a sign ruled by a benefic planet. The method gets the planets current Rasi sign finds the lord of that sign checks whether that sign lord is benefic for the chart.\n\n**Signature:** `IsPlanetInBeneficSign(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose sign lord should be judged.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInEnemyHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInEnemyHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInEnemyHouse"
              ]
            },
            "description": "Checks whether a planet is in a house whose sign is ruled by an enemy. The method excludes Rahu and Ketu finds the planets signbased house determines the planets relationship to that house returns true for EnemyVarga or BitterEnemyVarga.\n\n**Signature:** `IsPlanetInEnemyHouse(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInEnemySign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInEnemySign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInEnemySign"
              ]
            },
            "description": "Checks whether a planet is placed in an enemy sign. The method gets the planets current Rasi sign determines the relationship between the planet and that sign returns true for EnemyVarga or BitterEnemyVarga.\n\n**Signature:** `IsPlanetInEnemySign(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInFriendHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInFriendHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInFriendHouse"
              ]
            },
            "description": "Checks whether a planet is in a house whose sign is ruled by a friend. The method excludes Rahu and Ketu finds the planets signbased house determines the planets relationship to that house returns true for FriendVarga or BestFriendVarga.\n\n**Signature:** `IsPlanetInFriendHouse(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInFriendlyDrekkana",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInFriendlyDrekkana",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInFriendlyDrekkana"
              ]
            },
            "description": "Checks whether a planet is in a Drekkana whose lord is friendly to that planet. The method finds the planets D3 Drekkana sign gets the lord of that Drekkana sign calculates the combined planettoplanet relationship returns true when the relationship is Friend or BestFriend.\n\n**Signature:** `IsPlanetInFriendlyDrekkana(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInFriendSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInFriendSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInFriendSign"
              ]
            },
            "description": "Checks whether a planet is placed in a friendly sign. The method gets the planets current Rasi sign determines the relationship between the planet and that sign returns true for FriendVarga or BestFriendVarga.\n\n**Signature:** `IsPlanetInFriendSign(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInGandanta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInGandanta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInGandanta"
              ]
            },
            "description": "Checks if a planet is in bGandantab the treacherous junction zones between the water and fire signs. Per Prasna Marga glossary Gandanta ... The conjunction of PiscesAries CancerLeo and ScorpioSagittarius. Brihat Parasara Hora Sastra Ch. 92 describes the three kinds of Gandanta Tithi Nakshatra Lagna and calls births and undertakings in Gandanta inauspicious. Uses the same zone as this engines Gandanta event calculators within 3 degrees 20 minutes on either side of the three waterfire junctions CancerLeo 120 ScorpioSagittarius 240 PiscesAries 0. This equals the last quarter of the nakshatras Aslesha Jyeshta and Revati plus the first quarter of Magha Moola and Aswini.\n\n**Signature:** `IsPlanetInGandanta(PlanetNameplanetName,TimeinputTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): \n- `inputTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "IsPlanetInGarvitaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInGarvitaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInGarvitaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bGarvita Avastab. The method returns ctruec when the planet is either in exaltation or in its Moolatrikona zone.\n\n**Signature:** `IsPlanetInGarvitaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInGoodAspectToHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": \"House1\",\n  \"TransmitingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInGoodAspectToHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInGoodAspectToHouse"
              ]
            },
            "description": "Checks whether a planet casts a good aspect onto a house. The method confirms that the transmitting planet aspects the requested house evaluates the planets relationship to the house sign returns true when the relationship is own varga friend varga best friend varga.\n\n**Signature:** `IsPlanetInGoodAspectToHouse(HouseNamereceivingAspect,PlanetNametransmitingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receivingAspect` (`HouseName`): The house receiving the aspect.\n- `transmitingAspect` (`PlanetName`): The planet casting the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInGoodAspectToPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"TransmitingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInGoodAspectToPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInGoodAspectToPlanet"
              ]
            },
            "description": "Checks whether one planet casts a good aspect onto another planet. The method confirms that the transmitting planet aspects the receiving planet calculates the combined relationship between the two planets returns true only when the relationship is Friend or BestFriend.\n\n**Signature:** `IsPlanetInGoodAspectToPlanet(PlanetNamereceivingAspect,PlanetNametransmitingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving the aspect.\n- `transmitingAspect` (`PlanetName`): The planet casting the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInGopuraAmsha",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInGopuraAmsha",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInGopuraAmsha"
              ]
            },
            "description": "Checks whether a planet has attained Gopura Amsha Gopuramsa. The method excludes Rahu and Ketu checks the planets sign in several divisional charts counts how many times each sign appears returns true if any sign appears in at least four of those divisional placements. The divisional charts checked are D1 Rasi D2 Hora D3 Drekkana D7 Saptamsha D9 Navamsha D12 Dwadashamsha D30 Trimshamsha\n\n**Signature:** `IsPlanetInGopuraAmsha(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInHouseBasedOnLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInHouseBasedOnLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInHouseBasedOnLongitudes"
              ]
            },
            "description": "Checks whether a planet is in a specified house using longitudebased house boundaries. The method calculates the planets house through HousePlanetOccupiesBasedOnLongitudes... and compares it with the requested house.\n\n**Signature:** `IsPlanetInHouseBasedOnLongitudes(PlanetNameplanet,HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `houseNumber` (`HouseName`): The house to compare against.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInHouseBasedOnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInHouseBasedOnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInHouseBasedOnSign"
              ]
            },
            "description": "Checks whether a planet is in a specified house using signbased house placement. The method calculates the planets house through HousePlanetOccupiesBasedOnSign... and compares it with the requested house.\n\n**Signature:** `IsPlanetInHouseBasedOnSign(PlanetNameplanet,HouseNamehouseNumber,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `houseNumber` (`HouseName`): The house to compare against.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInHouseKP",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Cusps\": {\n    \"House1\": {\n      \"TotalDegrees\": \"0\"\n    },\n    \"House2\": {\n      \"TotalDegrees\": \"30\"\n    },\n    \"House3\": {\n      \"TotalDegrees\": \"60\"\n    },\n    \"House4\": {\n      \"TotalDegrees\": \"90\"\n    },\n    \"House5\": {\n      \"TotalDegrees\": \"120\"\n    },\n    \"House6\": {\n      \"TotalDegrees\": \"150\"\n    },\n    \"House7\": {\n      \"TotalDegrees\": \"180\"\n    },\n    \"House8\": {\n      \"TotalDegrees\": \"210\"\n    },\n    \"House9\": {\n      \"TotalDegrees\": \"240\"\n    },\n    \"House10\": {\n      \"TotalDegrees\": \"270\"\n    },\n    \"House11\": {\n      \"TotalDegrees\": \"300\"\n    },\n    \"House12\": {\n      \"TotalDegrees\": \"330\"\n    }\n  },\n  \"PlanetNirayanaDegrees\": {\n    \"TotalDegrees\": \"180\"\n  },\n  \"House\": \"House1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInHouseKP",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInHouseKP"
              ]
            },
            "description": "Checks whether a planet falls inside a house using a KPstyle cusp boundary method. The method reads the cusp longitude for the requested house compares the planets Nirayana longitude with the current and next cusp handles wraparound when the next cusp longitude is numerically smaller than the current cusp returns whether the planet falls inside that cusp interval.\n\n**Signature:** `IsPlanetInHouseKP(Dictionary<HouseName,Angle>cusps,AngleplanetNirayanaDegrees,HouseNamehouse)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `cusps` (`Dictionary<HouseName, Angle>`): House cusp longitudes usable for horary or natal KPstyle calculations.\n- `planetNirayanaDegrees` (`Angle`): The planets Nirayana longitude.\n- `house` (`HouseName`): The house to test."
          },
          "response": []
        },
        {
          "name": "IsPlanetInKendra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInKendra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInKendra"
              ]
            },
            "description": "Checks whether a planet is in a Kendra house from Lagna. The method checks only 4th house 7th house 10th house\n\n**Signature:** `IsPlanetInKendra(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInKendraFromPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"KendraFrom\": {\n    \"Name\": \"Sun\"\n  },\n  \"KendraTo\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInKendraFromPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInKendraFromPlanet"
              ]
            },
            "description": "Checks whether one planet is in a Kendra position from another planet. The method counts the sign distance between the two planets checks whether the distance is one of the Kendra positions 1 4 7 10\n\n**Signature:** `IsPlanetInKendraFromPlanet(PlanetNamekendraFrom,PlanetNamekendraTo,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `kendraFrom` (`PlanetName`): The reference planet.\n- `kendraTo` (`PlanetName`): The planet being checked from the reference planet.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInKshobhitaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInKshobhitaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInKshobhitaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bKshobhita Avastab using the current code logic. The source description says this state involves conjunction with the Sun plus difficult hostile influence. The implementation checks conjunction with the Sun then combines the bnegatedb results of the enemyaspect and maleficaspect checks returns ctruec only if the full codedefined condition passes.\n\n**Signature:** `IsPlanetInKshobhitaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInKshuditaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInKshuditaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInKshuditaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bKshudita Avastab. The current implementation treats the planet as Kshudita when banyb of the following is true it is in an enemy sign it is conjoined with enemy planets it is aspected by enemy planets.\n\n**Signature:** `IsPlanetInKshuditaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInLajjitaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInLajjitaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInLajjitaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bLajjita Avastab in the current implementation. The source description says Lajjita applies when a planet is in the 5th house and joined by certain difficult planets. The current code checks whether the input planet is in the 5th house and whether the list Rahu Ketu Saturn Mars is in the 5th house.\n\n**Signature:** `IsPlanetInLajjitaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInMoolatrikona",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInMoolatrikona",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInMoolatrikona"
              ]
            },
            "description": "Checks whether a planet is in its Moolatrikona zone. Moolatrikona is similar to exaltation but it applies to a sign range rather than only a single point. The method checks the planets sign and degree against the supported ranges Sun Leo 020 Moon Taurus 430 Mercury Virgo 1620 Jupiter Sagittarius 013 Mars Aries 018 Venus Libra 010 Saturn Aquarius 020\n\n**Signature:** `IsPlanetInMoolatrikona(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInMuditaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInMuditaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInMuditaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bMudita Avastab. The method returns ctruec when banyb of the following applies the planet is in a friendly sign the planet is conjoined with Jupiter the planet is conjoined with a friendly planet the planet is aspected by a friendly planet.\n\n**Signature:** `IsPlanetInMuditaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInOwnHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInOwnHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInOwnHouse"
              ]
            },
            "description": "Checks whether a planet is placed in a house whose sign it owns. The method excludes Rahu and Ketu finds the planets current house using signbased placement checks the planets relationship to that house returns true when the relationship is OwnVarga.\n\n**Signature:** `IsPlanetInOwnHouse(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInOwnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInOwnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInOwnSign"
              ]
            },
            "description": "Checks whether a planet is placed in its own sign. The method uses the same relationship check as IsPlanetInOwnHouse... excludes Rahu and Ketu finds the planets signbased house checks whether the planets relationship with that house is OwnVarga.\n\n**Signature:** `IsPlanetInOwnSign(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"SignInput\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInSign"
              ]
            },
            "description": "Checks whether a planet is currently in a specific zodiac sign. The method calculates the planets Rasi sign at the given time and compares it with the requested sign.\n\n**Signature:** `IsPlanetInSign(PlanetNameplanetName,ZodiacNamesignInput,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `signInput` (`ZodiacName`): The zodiac sign to compare against.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInTrashitaAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInTrashitaAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInTrashitaAvasta"
              ]
            },
            "description": "Checks whether a planet is in bTrashita Trishita Avastab. The current code requires all of the following the planet is in a watery sign the planet is aspected by an enemy the planet is bnotb aspected by benefic planets.\n\n**Signature:** `IsPlanetInTrashitaAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to test.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInTrikona",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInTrikona",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInTrikona"
              ]
            },
            "description": "Checks whether a planet is in a Trikona house from Lagna. The Trikona houses are 1st 5th 9th\n\n**Signature:** `IsPlanetInTrikona(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInUpachaya",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInUpachaya",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInUpachaya"
              ]
            },
            "description": "Checks whether a planet is in an Upachaya house. The Upachaya houses are 3rd 6th 10th 11th\n\n**Signature:** `IsPlanetInUpachaya(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetInWaterySign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetInWaterySign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetInWaterySign"
              ]
            },
            "description": "Checks whether a planet is currently in a water sign. The method gets the planets Rasi sign and tests whether that sign is Cancer Scorpio or Pisces.\n\n**Signature:** `IsPlanetInWaterySign(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetMaleficForLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetMaleficForLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetMaleficForLagna"
              ]
            },
            "description": "Checks whether a planet appears in the complete lagnaspecific malefic list. The method simply tests whether MaleficPlanetListForLagna... contains the requested planet.\n\n**Signature:** `IsPlanetMaleficForLagna(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetMaleficLordForLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetMaleficLordForLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetMaleficLordForLagna"
              ]
            },
            "description": "Checks whether a planet is a malefic lord for the charts Lagna based on fixed Lagnaspecific lordship rules. The method determines the Lagna sign applies the corresponding B. V. Ramanstyle maleficlord table returns whether the planet is listed as unfavorable for that Lagna.\n\n**Signature:** `IsPlanetMaleficLordForLagna(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetMaleficToLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetMaleficToLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetMaleficToLagna"
              ]
            },
            "description": "Checks whether a planet is malefic for the charts specific Lagna. This method is a naming alias that delegates to the comprehensive lagnaspecific malefic check IsPlanetMaleficForLagna....\n\n**Signature:** `IsPlanetMaleficToLagna(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetMarakaToLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetMarakaToLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetMarakaToLagna"
              ]
            },
            "description": "Checks whether a planet is a Maraka for the charts Lagna. The method gets the Lagna sign applies a fixed LagnatoMaraka lookup table returns whether the supplied planet appears in that Maraka list.\n\n**Signature:** `IsPlanetMarakaToLagna(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetNaturalBenefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetNaturalBenefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetNaturalBenefic"
              ]
            },
            "description": "Checks whether a planet is a natural benefic. The implementation treats the following planets as natural benefics Jupiter Venus\n\n**Signature:** `IsPlanetNaturalBenefic(PlanetNameplanetName)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check."
          },
          "response": []
        },
        {
          "name": "IsPlanetNaturalMalefic",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetNaturalMalefic",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetNaturalMalefic"
              ]
            },
            "description": "Checks whether a planet is a natural malefic. The implementation treats the following planets as natural malefics Mars Saturn Rahu Ketu\n\n**Signature:** `IsPlanetNaturalMalefic(PlanetNameplanetName)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check."
          },
          "response": []
        },
        {
          "name": "IsPlanetNeutralForLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetNeutralForLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetNeutralForLagna"
              ]
            },
            "description": "Checks whether a planet is neutral for the charts Lagna. The method determines the Lagna sign applies a fixed Lagnaspecific neutralplanet table returns whether the planet is listed as neutral.\n\n**Signature:** `IsPlanetNeutralForLagna(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetPhysicallyHarmful",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetPhysicallyHarmful",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetPhysicallyHarmful"
              ]
            },
            "description": "Checks whether a planet appears in the physically harmful planet list. The method delegates to PhysicallyHarmfulPlanetList....\n\n**Signature:** `IsPlanetPhysicallyHarmful(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetReceivingBadAspects",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetReceivingBadAspects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetReceivingBadAspects"
              ]
            },
            "description": "Checks whether a planet is receiving any bad aspects. The method delegates to AllPlanetsInBadAspectToPlanet... and returns whether any bad aspectors are found.\n\n**Signature:** `IsPlanetReceivingBadAspects(PlanetNamereceivingAspect,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetReceivingHarmfulConjunctions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetReceivingHarmfulConjunctions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetReceivingHarmfulConjunctions"
              ]
            },
            "description": "Checks whether a planet receives any harmful conjunctions. The method delegates to AllHarmfulPlanetsInBadConjunctionWith....\n\n**Signature:** `IsPlanetReceivingHarmfulConjunctions(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet receiving conjunctions.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetRetrograde",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetRetrograde",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetRetrograde"
              ]
            },
            "description": "Checks whether a planet is retrograde at the supplied time. The method handles special fixed cases calculates the planets speed or motion condition returns whether the planet is moving in reverse zodiacal direction.\n\n**Signature:** `IsPlanetRetrograde(PlanetNameplanetName,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetSameHouseWithHouseLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": 1,\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetSameHouseWithHouseLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetSameHouseWithHouseLord"
              ]
            },
            "description": "Checks whether a planet occupies the bsame houseb as the lord of a specified house. This method does bnotb require exact conjunction by degree. It only checks whether both bodies fall in the same house by signbased house occupation logic.\n\n**Signature:** `IsPlanetSameHouseWithHouseLord(inthouseNumber,PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `houseNumber` (`Int32`): The house whose lord should be examined.\n- `planet` (`PlanetName`): The planet to compare against that house lord.\n- `birthTime` (`Time`): The natal chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetsInSignsFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromList\": [\n    1,\n    3,\n    5\n  ],\n  \"PlanetList\": [\n    \"Mars\",\n    \"Jupiter\"\n  ],\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetsInSignsFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetsInSignsFromLagna"
              ]
            },
            "description": "Checks whether any planet from a supplied list is located in any of the requested signs counted from Lagna. The method gathers all planets found in the counted signs from Lagna checks whether any of those planets appear in planetList returns true on the first match.\n\n**Signature:** `IsPlanetsInSignsFromLagna(int[]signsFromList,PlanetName[]planetList,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `signsFromList` (`Int32[]`): The sign counts from Lagna to inspect.\n- `planetList` (`PlanetName[]`): The planets being searched for.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetsInSignsFromPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignsFromList\": [\n    1,\n    3,\n    5\n  ],\n  \"PlanetList\": [\n    \"Mars\",\n    \"Jupiter\"\n  ],\n  \"StartPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetsInSignsFromPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetsInSignsFromPlanet"
              ]
            },
            "description": "Checks whether any planet from a supplied list is located in any of the requested signs counted from a reference planet. The method gathers all planets found in the counted signs from startPlanet checks whether any of those planets appear in planetList returns true on the first match.\n\n**Signature:** `IsPlanetsInSignsFromPlanet(int[]signsFromList,PlanetName[]planetList,PlanetNamestartPlanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `signsFromList` (`Int32[]`): The sign counts from the reference planet to inspect.\n- `planetList` (`PlanetName[]`): The planets being searched for.\n- `startPlanet` (`PlanetName`): The planet used as the counting reference.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetStrongInShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetStrongInShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetStrongInShadbala"
              ]
            },
            "description": "Checks whether a planet meets its classical minimum Shadbala threshold. The method compares the planets Shadbala Pinda in Rupas against a planetspecific threshold Sun 5 Moon 6 Mars 5 Mercury 7 Jupiter 6.5 Venus 5.5 Saturn 5 Rahu 5 Ketu 5\n\n**Signature:** `IsPlanetStrongInShadbala(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetVargottama",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetVargottama",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetVargottama"
              ]
            },
            "description": "Checks whether a planet is Vargottama. A planet is treated as Vargottama when it occupies the same zodiac sign in the Rasi chart D1 and the Navamsha chart D9.\n\n**Signature:** `IsPlanetVargottama(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetWeak",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetWeak",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetWeak"
              ]
            },
            "description": "Checks whether a planet is weak by the two simple conditions used in this helper. The method returns true if the planet is either debilitated or combust.\n\n**Signature:** `IsPlanetWeak(PlanetNameplanet,Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "IsPlanetYogakarakaToLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsPlanetYogakarakaToLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsPlanetYogakarakaToLagna"
              ]
            },
            "description": "Checks whether a planet is a Yogakaraka for the charts Lagna. The method gets the Lagna sign applies a fixed LagnatoYogakaraka lookup table returns whether the supplied planet appears in that favorable list.\n\n**Signature:** `IsPlanetYogakarakaToLagna(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to check.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "IsSuklaPaksha",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsSuklaPaksha",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsSuklaPaksha"
              ]
            },
            "description": "Checks whether the supplied time falls in Shukla Paksha the bright or waxing half of the lunar month.\n\n**Signature:** `IsSuklaPaksha(Timetime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsUpagraha",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsUpagraha",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsUpagraha"
              ]
            },
            "description": "Checks whether a planet name belongs to the bUpagrahab set used by this library. The method returns ctruec for the supported Upagraha names including Dhuma Vyatipaata Parivesha Indrachaapa Upaketu Kaala Mrityu Arthaprahaara Yamaghantaka Gulika Maandi.\n\n**Signature:** `IsUpagraha(PlanetNameplanet)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to check."
          },
          "response": []
        },
        {
          "name": "IsWaningMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsWaningMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsWaningMoon"
              ]
            },
            "description": "Checks whether the Moon is in the waning phase also called Krishna Paksha or the dark half of the lunar month. The method calculates the lunar day and checks whether its moon phase is DarkHalf.\n\n**Signature:** `IsWaningMoon(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "IsWaterSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MoonSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsWaterSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsWaterSign"
              ]
            },
            "description": "Checks whether a zodiac sign belongs to the water element. Water signs are Cancer Scorpio Pisces\n\n**Signature:** `IsWaterSign(ZodiacNamemoonSign)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `moonSign` (`ZodiacName`): The sign to check."
          },
          "response": []
        },
        {
          "name": "IsWaxingMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/IsWaxingMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "IsWaxingMoon"
              ]
            },
            "description": "Checks whether the Moon is in the waxing phase also called Shukla Paksha or the bright half of the lunar month. The method calculates the lunar day and checks whether its moon phase is BrightHalf.\n\n**Signature:** `IsWaxingMoon(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "JaiminiGrahaStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/JaiminiGrahaStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "JaiminiGrahaStrength"
              ]
            },
            "description": "Calculates Jaimini Graha Strength. Jaimini Graha Bala evaluates planetary strength using Sign dignity Jaimini Rasi Drishti support Planetary sign placement This is different from Parashara Shadbala. Based on Jagannatha Hora Jaimini system.\n\n**Signature:** `JaiminiGrahaStrength(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "JaiminiRasiDrishti",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/JaiminiRasiDrishti",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "JaiminiRasiDrishti"
              ]
            },
            "description": "Calculates Jaimini Rasi Drishti. Jaimini Rasi Drishti is the sign aspect system used in Jaimini astrology. Rules Movable signs aspect fixed signs Fixed signs aspect movable signs Dual signs aspect other dual signs Based on Jagannatha Hora Jaimini calculations.\n\n**Signature:** `JaiminiRasiDrishti(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "JaiminiRasiStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/JaiminiRasiStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "JaiminiRasiStrength"
              ]
            },
            "description": "Calculates Jaimini Rasi Strength. Jaimini Rasi Bala evaluates the relative strength of zodiac signs using Planet occupation Jaimini Rasi Drishti Planetary dignity support Used in Jaimini Dasa Rasi based judgement Sign strength comparison Based on Jagannatha Hora Jaimini calculations.\n\n**Signature:** `JaiminiRasiStrength(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "JHoraYogaList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/JHoraYogaList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "JHoraYogaList"
              ]
            },
            "description": "Detects the classical natal yogas displayed by JHoras Other strengths pane. Every row is derived from the supplied chart no referencechart rows are stored.\n\n**Signature:** `JHoraYogaList(Timetime)`  \n**Returns:** `List<JHoraYogaResult>`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "KaalaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KaalaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KaalaLongitude"
              ]
            },
            "description": "Calculates the longitude of bKaalab the Upagraha associated with the bmiddle of the Suns planetary partb. The method delegates to cUpagrahaLongitude...c which determines the relevant day or night segment and returns the Lagna longitude rising at that selected point.\n\n**Signature:** `KaalaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "KalachakraChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KalachakraChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KalachakraChart"
              ]
            },
            "description": "Calculates Kalachakra Chart. Kalachakra chart maps Moon Nakshatra Pada into the corresponding Rasi sequence used for Kalachakra Dasa calculations. Based on Jagannatha Hora Kalachakra system. Returns Moon longitude Nakshatra Pada Kalachakra group Starting sign Direction sequence\n\n**Signature:** `KalachakraChart(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth time."
          },
          "response": []
        },
        {
          "name": "KalachakraDasa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KalachakraDasa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KalachakraDasa"
              ]
            },
            "description": "Calculates Kalachakra Dasa. Kalachakra Dasa is a Rasi based predictive system derived from Moon Nakshatra Pada. Uses KalachakraChart Rasi sequence Sign lords Classical sign years\n\n**Signature:** `KalachakraDasa(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "KalaSarpaYoga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KalaSarpaYoga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KalaSarpaYoga"
              ]
            },
            "description": "Detects bKala Sarpa Yogab all seven classical planets hemmed on one side of the RahuKetu axis at any given time works for birth charts and transits. Definition per B.V. Raman My Experiences in Astrology You are born in Kalasarpa Yoga all the planets being hemmed in between Rahu and Ketu. Raman also applied it to transits with Moonexception windows From 2971942 to 2681942 excepting the period of the Moons transit from Leo to Capricorn Kalasarpa Yoga... the yoga forms and breaks as the fast Moon sweeps in and out of the nodal envelope. The method splits the zodiac into the two arcs bounded by Rahu and Ketu and tests which arc each of the 7 planets Sun to Saturn occupies. The yoga is complete IsOccuring only when all 7 sit strictly inside ONE arc a planet exactly conjunct either node 0 degree boundary counts as breaking the yoga. Returns JSON with full working IsOccuring OccupiedSide RahuToKetu the zodiacal arc from Rahu forward to Ketu KetuToRahu the arc from Ketu forward to Rahu None planets on both sides HemmedPlanets majority side EscapedPlanets planets outside the majority arc breaking the yoga and the nodal longitudes used.\n\n**Signature:** `KalaSarpaYoga(TimeinputTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `inputTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "Karana",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Karana",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Karana"
              ]
            },
            "description": "Calculates the Karana which is half of a lunar day or Tithi. The method calculates the angular separation between the Moon and Sun converts that separation into a raw lunarday value determines the current Tithi checks whether the time is in the first or second half of the Tithi maps that position to the correct Karana.\n\n**Signature:** `Karana(Timetime)`  \n**Returns:** `Karana`\n\n**Parameters**\n- `time` (`Time`): The time for which the Karana should be calculated."
          },
          "response": []
        },
        {
          "name": "KaranaNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KaranaNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KaranaNumber"
              ]
            },
            "description": "Returns the current Karana position in the complete 60Karana sequence of the lunar month. Each Karana is one half of a Tithi and spans 6 degrees of MoonSun angular separation. This is the chronological Karana number not the ordinal of the repeating Karananame enum. Values range from 1 to 60.\n\n**Signature:** `KaranaNumber(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "KhavedamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KhavedamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KhavedamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Khavedamsha D40 sign at the specified longitude. The method first resolves the ordinary zodiac sign at that longitude and then converts it into the D40 sign.\n\n**Signature:** `KhavedamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "KhavedamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KhavedamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KhavedamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Khavedamsha D40 equivalent. This is the main signconversion helper used for D40 chart calculations.\n\n**Signature:** `KhavedamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "KotaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KotaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KotaChakra"
              ]
            },
            "description": "Calculates Kota Chakra. Kota Chakra Fortress Chakra is a classical Jyotisha transit protection system. It is based on Moon Nakshatra Nakshatra Pada Kota Swami Kota Pala Fortress layers Used for Transit analysis Protection analysis Planetary attackdefence interpretation Based on Jagannatha Hora Kota Chakra.\n\n**Signature:** `KotaChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "KujaDosaScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/KujaDosaScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "KujaDosaScore"
              ]
            },
            "description": "Calculates the total Kuja Dosha Manglik Dosha score for a chart. The method evaluates the dosha contribution of Mars Saturn Rahu Ketu Sun. It checks each planets house placement applies classical cancellation rules evaluates sign relationship and dignity then assigns a weighted score. The total score is the sum of all relevant planet scores.\n\n**Signature:** `KujaDosaScore(TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "LagnaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LagnaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LagnaSignName"
              ]
            },
            "description": "Returns the zodiac sign of the Lagna Ascendant at the given time. The method reads the sign of House 1 and returns only the sign name.\n\n**Signature:** `LagnaSignName(Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "LattaTransit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LattaTransit",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LattaTransit"
              ]
            },
            "description": "Calculates Latta Transit. Latta is a Nakshatra based transit system measuring planetary obstruction relative to the natal Moon Nakshatra. Planetary Latta positions Sun 12th Moon 9th Mars 3rd Mercury 7th Jupiter 6th Venus 5th Saturn 8th Based on Jagannatha Hora Latta calculation.\n\n**Signature:** `LattaTransit(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "LmtToStd",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LmtDateTime\": {\n    \"Date\": \"05:45 03/05/1932\",\n    \"Longitude\": 75.0\n  },\n  \"StdOffset\": \"05:30:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LmtToStd",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LmtToStd"
              ]
            },
            "description": "Converts bLocal Mean Time LMTb into bStandard Time STDb using a supplied standard offset. The method 1. reconstructs the source cDateTimeOffsetc from the LMT date and longitude 2. converts that offset to the requested standard offset 3. returns the resulting standard time.\n\n**Signature:** `LmtToStd(LocalMeanTimelmtDateTime,TimeSpanstdOffset)`  \n**Returns:** `DateTimeOffset`\n\n**Parameters**\n- `lmtDateTime` (`LocalMeanTime`): The LMT value to convert.\n- `stdOffset` (`TimeSpan`): The target standardtime offset."
          },
          "response": []
        },
        {
          "name": "LmtToUtc",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LmtToUtc",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LmtToUtc"
              ]
            },
            "description": "Converts the supplied Time from Local Mean Time to UTC. The method returns the input times LMT DateTimeOffset converted to universal time.\n\n**Signature:** `LmtToUtc(Timetime)`  \n**Returns:** `DateTimeOffset`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "LocalApparentTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LocalApparentTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LocalApparentTime"
              ]
            },
            "description": "Returns the bLocal Apparent Time LATb for a supplied time and caches the result. The method 1. converts the input into Julian LMT 2. converts that value to local apparent time through Swiss Ephemeris 3. converts the Julian result back into a normal cDateTimec 4. returns the final local apparent time.\n\n**Signature:** `LocalApparentTime(Timetime)`  \n**Returns:** `DateTime`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "LocalMeanTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LocalMeanTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LocalMeanTime"
              ]
            },
            "description": "Returns the supplied time formatted as bLocal Mean Time LMTb text.\n\n**Signature:** `LocalMeanTime(Timetime)`  \n**Returns:** `String`\n\n**Parameters**\n- `time` (`Time`): The time to format."
          },
          "response": []
        },
        {
          "name": "LocalStandardTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LocalStandardTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LocalStandardTime"
              ]
            },
            "description": "Returns the supplied time formatted as bLocal Standard Timeb text.\n\n**Signature:** `LocalStandardTime(Timetime)`  \n**Returns:** `String`\n\n**Parameters**\n- `time` (`Time`): The time to format."
          },
          "response": []
        },
        {
          "name": "LongitudeAtZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LongitudeAtZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LongitudeAtZodiacSign"
              ]
            },
            "description": "Converts a ZodiacSign object back into an absolute zodiac longitude. The method takes the sign number multiplies the sign offset by 30 adds the degree within the sign returns the result as an Angle.\n\n**Signature:** `LongitudeAtZodiacSign(ZodiacSignzodiacSign)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The sign and degree to convert."
          },
          "response": []
        },
        {
          "name": "LongitudeToLMTOffset",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"LongitudeDeg\": 77.5946\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LongitudeToLMTOffset",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LongitudeToLMTOffset"
              ]
            },
            "description": "Converts a longitude into its corresponding bLocal Mean Time offsetb. The method validates that the longitude is in the expected range attempts a limited autocorrection when values appear to be off by a factor such as c1000c converts longitude to hours using the c15 1 hourc rule rounds the result to the nearest minute returns the final offset.\n\n**Signature:** `LongitudeToLMTOffset(doublelongitudeDeg)`  \n**Returns:** `TimeSpan`\n\n**Parameters**\n- `longitudeDeg` (`Double`): Longitude in degrees."
          },
          "response": []
        },
        {
          "name": "LordOfConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Constellation\": \"Aswini\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfConstellation"
              ]
            },
            "description": "Returns the planetary lord of a constellation Nakshatra. The method maps the 27 constellations to the standard repeating planetary ruler sequence Ketu Venus Sun Moon Mars Rahu Jupiter Saturn Mercury.\n\n**Signature:** `LordOfConstellation(ConstellationNameconstellation)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `constellation` (`ConstellationName`): The constellation to map."
          },
          "response": []
        },
        {
          "name": "LordOfHoraFromTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfHoraFromTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfHoraFromTime"
              ]
            },
            "description": "Returns the planetary lord of the Hora active at the supplied time. The method calculates the Vedic weekday calculates the Hora number at the time looks up the Hora lord using LordOfHoraFromWeekday....\n\n**Signature:** `LordOfHoraFromTime(Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "LordOfHoraFromWeekday",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Hora\": 1,\n  \"Day\": \"Sunday\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfHoraFromWeekday",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfHoraFromWeekday"
              ]
            },
            "description": "Returns the planetary lord of a given Hora number for a supplied weekday. The method uses a fixed 24Hora lookup table for each weekday. The first Hora is ruled by the lord of the weekday and the sequence continues through the classical planetary Hora order.\n\n**Signature:** `LordOfHoraFromWeekday(inthora,DayOfWeekday)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `hora` (`Int32`): Hora number from 1 to 24.\n- `day` (`DayOfWeek`): The Vedic weekday."
          },
          "response": []
        },
        {
          "name": "LordOfHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfHouse"
              ]
            },
            "description": "Returns the lord of a house. The method gets the zodiac sign assigned to the requested house returns the planetary lord of that sign.\n\n**Signature:** `LordOfHouse(HouseNamehouseNumber,Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house whose lord should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "LordOfHouseList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseList\": [\n    \"House1\",\n    \"House4\"\n  ],\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfHouseList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfHouseList"
              ]
            },
            "description": "Returns the planetary lords for a list of houses. The method loops through each requested house calculates that houses lord using LordOfHouse... and adds the result to a return list.\n\n**Signature:** `LordOfHouseList(List<HouseName>houseList,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `houseList` (`List<HouseName>`): The houses whose lords should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "LordOfLunarYear",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfLunarYear",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfLunarYear"
              ]
            },
            "description": "Gets the bLord of the Lunar Yearb VarshadhipatiAbdadhipathi the planet ruling the Hindu lunar year that contains the given time. Principle per B.V. Raman Graha and Bhava Balas Article 60 The Abdadhipathi the year lord is the planet that rules over the weekday on which the year begins. This method applies that principle to the actual lunar calendar year as pancangas do 1. finds the Chaitra new moon that began the current lunar year 2. finds the first sunrise after it Chaitra Shukla Pratipada the years first day 3. returns the lord of that weekday SundaySun ... SaturdaySaturn. Example the lunar year Vikari 201920 began Saturday 6 April 2019 so its year lord is Saturn. Note the related method YearAndMonthLord computes Article 60s arithmetic variant used for Kala Bala 360day years counted by ahargana from an epoch which can give a different planet from the pancanga lunarcalendar year lord returned here.\n\n**Signature:** `LordOfLunarYear(TimeinputTime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `inputTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "LordOfWeekday",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfWeekday",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfWeekday"
              ]
            },
            "description": "Returns the planetary lord of the weekday for a given time. The method first calculates the Vedic weekday and then maps it to its ruling planet.\n\n**Signature:** `LordOfWeekday(Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `time` (`Time`): The time whose weekday should be evaluated."
          },
          "response": []
        },
        {
          "name": "LordOfZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignName\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LordOfZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LordOfZodiacSign"
              ]
            },
            "description": "Returns the planetary lord of a zodiac sign. The method maps each sign to its classical ruler Aries Scorpio Mars Taurus Libra Venus Gemini Virgo Mercury Cancer Moon Leo Sun Sagittarius Pisces Jupiter Capricorn Aquarius Saturn\n\n**Signature:** `LordOfZodiacSign(ZodiacNamesignName)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `signName` (`ZodiacName`): The zodiac sign whose ruler should be returned."
          },
          "response": []
        },
        {
          "name": "LunarDay",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LunarDay",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LunarDay"
              ]
            },
            "description": "Calculates the lunar day or Tithi from the angular distance between the Moon and Sun. The method gets the Nirayana longitudes of the Sun and Moon measures the forward MoonSun separation divides the separation by 12 rounds up to the next whole Tithi number.\n\n**Signature:** `LunarDay(Timetime)`  \n**Returns:** `LunarDay`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "LunarMonth",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"IgnoreLeapMonth\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LunarMonth",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LunarMonth"
              ]
            },
            "description": "Calculates the bcurrent lunar monthb using New Moon boundaries and the sign of the SunMoon conjunction. The method 1. starts from the sunrise of the given date 2. finds the previous and next New Moon 3. determines the relevant month sign 4. detects whether the month is a leap month cAdhikac 5. returns the corresponding cLunarMonthc enum value.\n\n**Signature:** `LunarMonth(TimeinputTime,boolignoreLeapMonth)`  \n**Returns:** `LunarMonth`\n\n**Parameters**\n- `inputTime` (`Time`): The time for which the lunar month should be determined.\n- `ignoreLeapMonth` (`Boolean`): When ctruec skips the extra recursive leapmonth verification step."
          },
          "response": []
        },
        {
          "name": "LunarMonthName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/LunarMonthName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "LunarMonthName"
              ]
            },
            "description": "Returns the current Chandramana lunarmonth name. This is a convenience wrapper around the existing LunarMonth calculation and preserves Adhika month names.\n\n**Signature:** `LunarMonthName(Timetime)`  \n**Returns:** `LunarMonth`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "MaandiLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaandiLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaandiLongitude"
              ]
            },
            "description": "Calculates the longitude of bMaandib using the bmiddle of Saturns planetary partb in the current implementation. The method delegates to cUpagrahaLongitude...c and requests the cmiddlec position for Saturns part.\n\n**Signature:** `MaandiLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "Madhya",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"EpochToBirthDays\": 10000.0,\n  \"Time1\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Madhya",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Madhya"
              ]
            },
            "description": "Calculates the mean longitudes of planets from the interval between the epoch and the birth date. The method estimates where each planet would be if it moved at a uniform mean rate without applying orbital corrections.\n\n**Signature:** `Madhya(doubleepochToBirthDays,Timetime1)`  \n**Returns:** `Dictionary<PlanetName, Double>`\n\n**Parameters**\n- `epochToBirthDays` (`Double`): Number of days between the reference epoch and the chart time.\n- `time1` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MainActivity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MainActivity",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MainActivity"
              ]
            },
            "description": "Returns the main Pancha Pakshi bird activity Ruling Eating Walking Sleeping or Dying for a person at a given moment. Determines the persons stellar birthbird whether the Moon is waxing or waning day vs night the weekday and which of the five yamas the check time falls into then looks these up in the Pancha Pakshi master table. The activity indicates how favourable that moment is for the person under the South Indian Pancha Pakshi five birds system.\n\n**Signature:** `MainActivity(TimebirthTime,TimecheckTime)`  \n**Returns:** `BirdActivity`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time of the person used to find their birthbird.\n- `checkTime` (`Time`): The moment to evaluate the birds activity for."
          },
          "response": []
        },
        {
          "name": "MaleficHouseListByShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PersonBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Threshold\": 50\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaleficHouseListByShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaleficHouseListByShadbala"
              ]
            },
            "description": "Returns houses whose total house strength is below a supplied threshold. The method calculates HouseStrength... for every house compares each house strength against the threshold returns houses whose strength is less than the threshold.\n\n**Signature:** `MaleficHouseListByShadbala(TimepersonBirthTime,intthreshold)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `personBirthTime` (`Time`): The chart time.\n- `threshold` (`Int32`): The maximum house strength allowed for inclusion."
          },
          "response": []
        },
        {
          "name": "MaleficPlanetListByShadbala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PersonBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Threshold\": 50\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaleficPlanetListByShadbala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaleficPlanetListByShadbala"
              ]
            },
            "description": "Returns planets whose Shadbala strength is below a supplied threshold. The method calculates the strength of all planets checks each planets strength value returns planets whose strength is less than threshold.\n\n**Signature:** `MaleficPlanetListByShadbala(TimepersonBirthTime,intthreshold)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `personBirthTime` (`Time`): The chart time.\n- `threshold` (`Int32`): The maximum strength allowed for a planet to be included."
          },
          "response": []
        },
        {
          "name": "MaleficPlanetListForLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaleficPlanetListForLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaleficPlanetListForLagna"
              ]
            },
            "description": "Returns the complete list of planets that are malefic for the charts specific Lagna. The method checks the seven classical planets against lagnaspecific malefic lordship treats Moon as malefic only when it is both malefic for the Lagna and not benefic by lunar phase treats Mercury as malefic only when it is both malefic for the Lagna and afflicted by malefics always includes Rahu and Ketu.\n\n**Signature:** `MaleficPlanetListForLagna(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MaleficPlanetListInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaleficPlanetListInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaleficPlanetListInSign"
              ]
            },
            "description": "Returns all lagnaspecific malefic planets located in a given sign. The method gets all planets in the requested sign gets the complete malefic list for the charts Lagna returns only the planets that appear in both lists.\n\n**Signature:** `MaleficPlanetListInSign(ZodiacNamesign,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `sign` (`ZodiacName`): The zodiac sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MaleficPlanetsAspectingPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MaleficPlanetsAspectingPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MaleficPlanetsAspectingPlanet"
              ]
            },
            "description": "Returns the lagnaspecific malefic planets that aspect a given planet. The method gets the list of malefic planets for the charts Lagna filters that list to only planets aspecting receivingAspect returns the matching planets.\n\n**Signature:** `MaleficPlanetsAspectingPlanet(PlanetNamereceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MarakaPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MarakaPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MarakaPlanetList"
              ]
            },
            "description": "Builds a prioritized list of potential Maraka planets for the chart. The method groups planets into rough strength tiers Strong Marakas planets occupying the 2nd and 7th houses. Medium Marakas lords of the 2nd and 7th houses planets conjunct those lords Sun or Venus when they are Kendra lords. Weak Marakas fallback planets conjunct the 12th lord fallback lords of the 3rd and 8th houses if no stronger candidates are found. The final list is assembled in priority order and deduplicated.\n\n**Signature:** `MarakaPlanetList(TimebirthTime)`  \n**Returns:** `PlanetName[]`\n\n**Parameters**\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "MarriageByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MarriageByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MarriageByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction related to marriage timing.\n\n**Signature:** `MarriageByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MarriageMonthBySun",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MarriageMonthBySun",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MarriageMonthBySun"
              ]
            },
            "description": "Returns the Sunbased Ashtakavarga transit prediction used to narrow marriage timing to a month.\n\n**Signature:** `MarriageMonthBySun(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MarriageSignByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MarriageSignByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MarriageSignByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction for the sign connected with marriage timing.\n\n**Signature:** `MarriageSignByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MentalAfflictionBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MentalAfflictionBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MentalAfflictionBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction related to mental strain affliction or difficulty.\n\n**Signature:** `MentalAfflictionBySaturn(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MentalBalanceByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MentalBalanceByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MentalBalanceByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction related to mental balance steadiness or emotional support.\n\n**Signature:** `MentalBalanceByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MoonConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MoonConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MoonConstellation"
              ]
            },
            "description": "Returns the constellation occupied by a planet. The method gets the planets Nirayana longitude and maps that longitude to a constellation.\n\n**Signature:** `MoonConstellation(Timetime)`  \n**Returns:** `Constellation`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MoonriseTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MoonriseTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MoonriseTime"
              ]
            },
            "description": "Calculates Moonrise for the civil date and location contained in the supplied Time.\n\n**Signature:** `MoonriseTime(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): The date and location to evaluate."
          },
          "response": []
        },
        {
          "name": "MoonsetTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MoonsetTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MoonsetTime"
              ]
            },
            "description": "Calculates Moonset for the civil date and location contained in the supplied Time.\n\n**Signature:** `MoonsetTime(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): The date and location to evaluate."
          },
          "response": []
        },
        {
          "name": "MoonSignChangeTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MoonSignChangeTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MoonSignChangeTime"
              ]
            },
            "description": "Finds the next moment after the supplied time when the Moon enters a different zodiac sign. The transition is first bracketed with sixhour steps and then refined through bisection to approximately fifteen seconds.\n\n**Signature:** `MoonSignChangeTime(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): The starting time and location."
          },
          "response": []
        },
        {
          "name": "MoonSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MoonSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MoonSignName"
              ]
            },
            "description": "Returns the zodiac sign occupied by the Moon at the given time. The method calculates the Moons Rasi sign and returns only the sign name.\n\n**Signature:** `MoonSignName(Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "MotherDeathByJupiterAndSun",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MotherDeathByJupiterAndSun",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MotherDeathByJupiterAndSun"
              ]
            },
            "description": "Returns the JupiterandSun combined Ashtakavarga transit prediction related to the mothers death timing.\n\n**Signature:** `MotherDeathByJupiterAndSun(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MotherDeathBySaturn1",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MotherDeathBySaturn1",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MotherDeathBySaturn1"
              ]
            },
            "description": "Returns the first Saturnbased Ashtakavarga transit prediction related to the mothers death timing.\n\n**Signature:** `MotherDeathBySaturn1(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MotherDeathBySaturn2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MotherDeathBySaturn2",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MotherDeathBySaturn2"
              ]
            },
            "description": "Returns the second Saturnbased Ashtakavarga transit prediction related to the mothers death timing.\n\n**Signature:** `MotherDeathBySaturn2(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "MrityuLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/MrityuLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "MrityuLongitude"
              ]
            },
            "description": "Calculates the longitude of bMrityub the Upagraha associated with the bmiddle of Marss planetary partb. The method delegates to cUpagrahaLongitude...c and uses Mars as the related planet for the selected part.\n\n**Signature:** `MrityuLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "Murthi",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TransitPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Murthi",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Murthi"
              ]
            },
            "description": "Intended to calculate the Murthi or symbolic transit form of a planet Swarna Gold Rajata Silver Tamra Copper Loha Iron. The method comments indicate that the result should be based on the planets transit position counted from the natal Moon sign.\n\n**Signature:** `Murthi(PlanetNametransitPlanet,TimecheckTime,TimebirthTime)`  \n**Returns:** `String`\n\n**Parameters**\n- `transitPlanet` (`PlanetName`): The transiting planet to evaluate.\n- `checkTime` (`Time`): The time of transit.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "NakshatraBalance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NakshatraBalance",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NakshatraBalance"
              ]
            },
            "description": "Returns the percentage of the Moons current Nakshatra remaining. A Nakshatra spans 13 degrees 20 minutes. Values 100 Nakshatra has just begun 0 Nakshatra is about to end\n\n**Signature:** `NakshatraBalance(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "NakshatraPada",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NakshatraPada",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NakshatraPada"
              ]
            },
            "description": "Returns the Pada occupied by the Moon in its current Nakshatra. Every Nakshatra contains four equal Padas of 3 degrees 20 minutes. Values range from 1 to 4.\n\n**Signature:** `NakshatraPada(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "NakshatraToZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Constellation\": \"Aswini\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NakshatraToZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NakshatraToZodiacSign"
              ]
            },
            "description": "Returns the zodiac sign in which a Nakshatra begins. The method calculates the starting longitude of the constellation and maps that longitude to a zodiac sign.\n\n**Signature:** `NakshatraToZodiacSign(ConstellationNameconstellation)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `constellation` (`ConstellationName`): The constellation to convert."
          },
          "response": []
        },
        {
          "name": "NameNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputText\": \"Sun in Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NameNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NameNumber"
              ]
            },
            "description": "The numerical values given to the alphabets are based on the Chaldean System Numbers values denote the wave length of the sound and impact of letters. The powers of the nine planets in twelve star signs at different times are indicated in 108 numbers.\n\n**Signature:** `NameNumber(stringinputText)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `inputText` (`String`):"
          },
          "response": []
        },
        {
          "name": "NameNumberPrediction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"FullName\": \"John Doe\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NameNumberPrediction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NameNumberPrediction"
              ]
            },
            "description": "Shows numerology prediction for given name. At first the name number is calculated based on Chaldean System then prediction is matched with translation from Mantra Sutras.\n\n**Signature:** `NameNumberPrediction(stringfullName)`  \n**Returns:** `NumerologyPrediction`\n\n**Parameters**\n- `fullName` (`String`):"
          },
          "response": []
        },
        {
          "name": "NarayanaDasa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NarayanaDasa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NarayanaDasa"
              ]
            },
            "description": "Builds JHoras default D1 Narayana mahadasas recovered from FUN_00414060 and FUN_004ACC50. The second twelvesign cycle uses the native 12Y complements including zeroduration periods and civil boundaries are exact sidereal solar returns.\n\n**Signature:** `NarayanaDasa(Timetime)`  \n**Returns:** `NarayanaDasaResult`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "NativeDeathByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NativeDeathByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NativeDeathByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction related to the natives death timing.\n\n**Signature:** `NativeDeathByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "NativeDeathBySaturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NativeDeathBySaturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NativeDeathBySaturn"
              ]
            },
            "description": "Returns the Saturnbased Ashtakavarga transit prediction related to the natives death timing.\n\n**Signature:** `NativeDeathBySaturn(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "NativeDeathMonthBySun",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NativeDeathMonthBySun",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NativeDeathMonthBySun"
              ]
            },
            "description": "Returns the Sunbased Ashtakavarga transit prediction used to narrow the natives death timing to a month.\n\n**Signature:** `NativeDeathMonthBySun(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "NaturalBeneficPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NaturalBeneficPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NaturalBeneficPlanetList"
              ]
            },
            "description": "Returns the fixed list of natural benefic planets. The returned list contains Jupiter Venus\n\n**Signature:** `NaturalBeneficPlanetList()`  \n**Returns:** `List<PlanetName>`"
          },
          "response": []
        },
        {
          "name": "NaturalMaleficPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NaturalMaleficPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NaturalMaleficPlanetList"
              ]
            },
            "description": "Returns the fixed list of natural malefic planets. The returned list contains Mars Saturn Rahu Ketu\n\n**Signature:** `NaturalMaleficPlanetList()`  \n**Returns:** `List<PlanetName>`"
          },
          "response": []
        },
        {
          "name": "NavamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NavamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NavamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Navamsha D9 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D9 sign.\n\n**Signature:** `NavamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "NavamshaSignAtLongitudeOLD",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NavamshaSignAtLongitudeOLD",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NavamshaSignAtLongitudeOLD"
              ]
            },
            "description": "Calculates the Navamsha D9 sign at a longitude using an older manual method retained for compatibility and comparison. The method 1. determines the ordinary zodiac sign 2. chooses the starting Navamsha sign based on the sign group 3. calculates the current Navamsha division from the degrees in sign 4. counts forward to the final Navamsha sign. This is a legacy implementation preserved alongside the newer tabledriven approach.\n\n**Signature:** `NavamshaSignAtLongitudeOLD(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to evaluate."
          },
          "response": []
        },
        {
          "name": "NavamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NavamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NavamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Navamsha D9 equivalent. This is the main signconversion helper used for D9 chart calculations.\n\n**Signature:** `NavamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "NextHouseNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputHouseNumber\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NextHouseNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NextHouseNumber"
              ]
            },
            "description": "Returns the next house number after the supplied house. The method checks the cache increments the house number wraps from 12 back to 1.\n\n**Signature:** `NextHouseNumber(intinputHouseNumber)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `inputHouseNumber` (`Int32`): The starting house number."
          },
          "response": []
        },
        {
          "name": "NextLunarEclipse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NextLunarEclipse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NextLunarEclipse"
              ]
            },
            "description": "Finds the next lunar eclipse after the supplied time. The method checks the cache converts the time to Julian form asks Swiss Ephemeris to search forward for the next lunar eclipse reads the time of maximum eclipse from the result array converts that Julian value back into a normal UTC DateTime.\n\n**Signature:** `NextLunarEclipse(Timetime)`  \n**Returns:** `DateTime`\n\n**Parameters**\n- `time` (`Time`): The time from which to begin the forward search."
          },
          "response": []
        },
        {
          "name": "NextNewMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NextNewMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NextNewMoon"
              ]
            },
            "description": "Finds the bnext New Moonb after the supplied time by scanning forward in small time steps. The method starts at the input time moves forward in 30minute increments checks the SunMoon conjunction angle at each step returns the first time where the conjunction angle is under 1 degree.\n\n**Signature:** `NextNewMoon(TimeinputTime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `inputTime` (`Time`): The starting point for the forward scan."
          },
          "response": []
        },
        {
          "name": "NextSolarEclipse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NextSolarEclipse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NextSolarEclipse"
              ]
            },
            "description": "Finds the next solar eclipse after the supplied time and returns the global UTC time of maximum eclipse. The method checks the cache converts the input time to Julian time asks Swiss Ephemeris to search forward for the next solar eclipse reads the maximum eclipse time from the result array converts that Julian result back into a normal UTC DateTime.\n\n**Signature:** `NextSolarEclipse(Timetime)`  \n**Returns:** `DateTime`\n\n**Parameters**\n- `time` (`Time`): The time from which the forward eclipse search should begin."
          },
          "response": []
        },
        {
          "name": "NextZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NextZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NextZodiacSign"
              ]
            },
            "description": "Returns the zodiac sign immediately after the supplied sign. The method advances one sign forward and wraps from Pisces back to Aries.\n\n**Signature:** `NextZodiacSign(ZodiacNameinputSign)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `inputSign` (`ZodiacName`): The starting sign."
          },
          "response": []
        },
        {
          "name": "NithyaYoga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NithyaYoga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NithyaYoga"
              ]
            },
            "description": "Calculates the Nithya Yoga for the given time. The method gets the Nirayana longitudes of the Sun and Moon adds them together normalizes the result to the zodiac circle divides the combined longitude by 800 minutes of arc rounds up to the next Yoga number returns the matching NithyaYoga.\n\n**Signature:** `NithyaYoga(Timetime)`  \n**Returns:** `NithyaYoga`\n\n**Parameters**\n- `time` (`Time`): The time for which the Yoga should be calculated."
          },
          "response": []
        },
        {
          "name": "NithyaYogaBalance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NithyaYogaBalance",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NithyaYogaBalance"
              ]
            },
            "description": "Returns the percentage of the current Nithya Yoga remaining. Values 100 Yoga has just begun 0 Yoga has reached its end\n\n**Signature:** `NithyaYogaBalance(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "NithyaYogaNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NithyaYogaNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NithyaYogaNumber"
              ]
            },
            "description": "Returns the current Nithya Yoga number. Nithya Yoga is calculated from the normalized sum of the Nirayana longitudes of the Sun and Moon. Values range from 1 to 27.\n\n**Signature:** `NithyaYogaNumber(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "NoonTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NoonTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NoonTime"
              ]
            },
            "description": "Returns the apparent noon for the date of the supplied time. The method converts the input time into local apparent time takes that apparent date creates a DateTime at 1200 PM preserves the DateTimeKind from the local apparent time.\n\n**Signature:** `NoonTime(Timetime)`  \n**Returns:** `DateTime`\n\n**Parameters**\n- `time` (`Time`): The time whose apparent date should be used."
          },
          "response": []
        },
        {
          "name": "NorthIndianChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ChartType\": \"RasiD1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/NorthIndianChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "NorthIndianChart"
              ]
            },
            "description": "Creates a bNorth Indian style kundali chartb and returns the chart as an SVG string. Like the South Indian variant this method supports multiple chart types through the cchartTypec parameter.\n\n**Signature:** `NorthIndianChart(Timetime,ChartTypechartType)`  \n**Returns:** `String`\n\n**Parameters**\n- `time` (`Time`): The chart time and location.\n- `chartType` (`ChartType`): The chart type to generate. Defaults to cRasiD1c."
          },
          "response": []
        },
        {
          "name": "Nutation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Nutation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Nutation"
              ]
            },
            "description": "Gets the nutation value from Swiss Ephemeris for the supplied time. The method converts the time to Julian Day in UT calls Swiss Ephemeris with SE_ECL_NUT returns the nutationrelated value stored in the result array.\n\n**Signature:** `Nutation(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "PaapaKartariHouses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PaapaKartariHouses",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PaapaKartariHouses"
              ]
            },
            "description": "Finds houses in Paapa Kartari Yoga meaning houses hemmed between malefic planets. For each house the method checks the adjacent 2nd and 12th houses classifies the planets found there and returns the house when malefics are present and benefics are absent.\n\n**Signature:** `PaapaKartariHouses(Timetime)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PaapaKartariPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PaapaKartariPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PaapaKartariPlanets"
              ]
            },
            "description": "Finds planets in Paapa Kartari Yoga meaning planets hemmed between malefic influences. For each planet the method finds the planets signbased house checks the 2nd and 12th houses from that planet classifies the planets in those surrounding houses returns the planet when malefics are present and no benefics are present.\n\n**Signature:** `PaapaKartariPlanets(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "Panchaka",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Panchaka",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Panchaka"
              ]
            },
            "description": "Calculates the Panchaka classification for a given time. The method gets the lunar day number gets the Moon constellation number gets the weekday number gets the rising sign number adds them together divides the total by 9 maps the remainder to a Panchaka name.\n\n**Signature:** `Panchaka(Timetime)`  \n**Returns:** `PanchakaName`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "PanchangaTable",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PanchangaTable",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PanchangaTable"
              ]
            },
            "description": "Builds a full bPanchanga summary objectb for the supplied time. The method gathers a compact set of daily astrological values including ayanamsa tithi lunar month weekday Moon constellation nithya yoga karana hora lord disha shool sunrise sunset ishta kaala. This is a convenience method for producing one bundled Panchanga snapshot instead of calling each item separately.\n\n**Signature:** `PanchangaTable(TimeinputTime)`  \n**Returns:** `PanchangaTable`\n\n**Parameters**\n- `inputTime` (`Time`): The time and location for which the Panchanga should be calculated."
          },
          "response": []
        },
        {
          "name": "PanchaPakshiBirthBird",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PanchaPakshiBirthBird",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PanchaPakshiBirthBird"
              ]
            },
            "description": "Returns the persons Pancha Pakshi birthbird one of the five birds Vulture Owl Crow Cock or Peacock from their birth time. The bird is assigned from the ruling Moon constellation nakshatra at birth choosing between the waxingMoon and waningMoon bird groupings. The birthbird is the foundation of all Pancha Pakshi timing predictions for that person.\n\n**Signature:** `PanchaPakshiBirthBird(TimebirthTime)`  \n**Returns:** `BirdName`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time of the person."
          },
          "response": []
        },
        {
          "name": "PapaGrahasList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PapaGrahasList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PapaGrahasList"
              ]
            },
            "description": "Returns the list of Papa Grahas used for Shadbala and physicalaffliction calculations. The method always includes Sun Mars Saturn Rahu Ketu It conditionally adds Moon when the Moon is not benefic Mercury when Mercury is afflicted by malefics.\n\n**Signature:** `PapaGrahasList(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PariveshaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PariveshaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PariveshaLongitude"
              ]
            },
            "description": "Calculates the longitude of bPariveshab from Vyatipaata. The method 1. gets Vyatipaatas longitude 2. adds b180b 3. normalizes the result.\n\n**Signature:** `PariveshaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PhysicallyHarmfulPlanetList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PhysicallyHarmfulPlanetList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PhysicallyHarmfulPlanetList"
              ]
            },
            "description": "Returns the list of planets considered physically harmful through aspects conjunctions combustionlike influence or harsh rays. The method delegates directly to PapaGrahasList....\n\n**Signature:** `PhysicallyHarmfulPlanetList(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PhysicallyHarmfulPlanetsAspectingHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PhysicallyHarmfulPlanetsAspectingHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PhysicallyHarmfulPlanetsAspectingHouse"
              ]
            },
            "description": "Returns all physically harmful planets that aspect a given house. The method gets the physically harmful planet list checks which of those planets aspect the requested house returns the matching planets.\n\n**Signature:** `PhysicallyHarmfulPlanetsAspectingHouse(HouseNamehouse,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `house` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PickOutStrongestPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"RelatedPlanets\": [\n    \"Moon\",\n    \"Mars\"\n  ],\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PickOutStrongestPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PickOutStrongestPlanet"
              ]
            },
            "description": "Selects the strongest planet from a supplied list based on Shadbala. The method returns immediately if the list contains only one planet calculates Shadbala strength for each planet selects the planet with the highest strength value.\n\n**Signature:** `PickOutStrongestPlanet(List<PlanetName>relatedPlanets,TimebirthTime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `relatedPlanets` (`List<PlanetName>`): The candidate planets.\n- `birthTime` (`Time`): The chart time used for strength calculation."
          },
          "response": []
        },
        {
          "name": "PlanetAbdaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAbdaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAbdaBala"
              ]
            },
            "description": "Calculates Abda Bala the yearly lord strength. The method awards strength to the planet that rules the year of birth.\n\n**Signature:** `PlanetAbdaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The birth or chart time."
          },
          "response": []
        },
        {
          "name": "PlanetAkshavedamshaD45Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAkshavedamshaD45Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAkshavedamshaD45Sign"
              ]
            },
            "description": "Returns the planets Akshavedamsha D45 sign at the given time. The method converts the planets Rasi sign into its D45 equivalent.\n\n**Signature:** `PlanetAkshavedamshaD45Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetAshtakavargaReducedBindu",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Sign\": \"Aries\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAshtakavargaReducedBindu",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAshtakavargaReducedBindu"
              ]
            },
            "description": "Returns the reduced bindu count for a planet in a specific sign after applying the standard Ashtakavarga reduction steps. The method applies the alreadycomputed reduction pipeline and then returns the final value after Trikona reduction Ekadhipatya reduction.\n\n**Signature:** `PlanetAshtakavargaReducedBindu(PlanetNameplanet,ZodiacNamesign,TimebirthTime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose Ashtakavarga is being examined.\n- `sign` (`ZodiacName`): The zodiac sign to inspect.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "PlanetAshtakavargaReductions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAshtakavargaReductions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAshtakavargaReductions"
              ]
            },
            "description": "Returns the full Ashtakavarga reduction result for a planet. The result includes the major intermediate and final stages of the reduction pipeline such as the raw values the values after Trikona reduction the values after Ekadhipatya reduction.\n\n**Signature:** `PlanetAshtakavargaReductions(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `AshtakavargaReductionResult`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "PlanetAshtakvargaBindu",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"SignToCheck\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAshtakvargaBindu",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAshtakvargaBindu"
              ]
            },
            "description": "Give a planet and sign and ashtakvarga bindu can be calculated uses Bhinnashtakavarga EXP In the Suns own Ashtakvarga there are 5 bindus in Aries NOTE ON USE Ashtakvarga System pg.128 For example in the Standard Horoscope the Suns transit of Aries 3rd from Moon should prove favorable. In the Suns own Ashtakvarga there are 5 bindus in Aries. Therefore the good effects produced should be to the extent of 62. The Suns transit of Capricorn 12th from the Moon should prove adverse. Capricorn has no bindus.Therefore the evil results to be produced by this transit are to the brim.\n\n**Signature:** `PlanetAshtakvargaBindu(PlanetNameplanet,ZodiacNamesignToCheck,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `signToCheck` (`ZodiacName`): \n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetAshtakvargaBinduByPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MainAshtakvargaPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"PlanetToCheck\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAshtakvargaBinduByPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAshtakvargaBinduByPlanet"
              ]
            },
            "description": "Example Get Venus bindu in Mercurys Ashtakvarga main planet\n\n**Signature:** `PlanetAshtakvargaBinduByPlanet(PlanetNamemainAshtakvargaPlanet,PlanetNameplanetToCheck,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `mainAshtakvargaPlanet` (`PlanetName`): planets who Bhinnashtakavarga Chart is checked\n- `planetToCheck` (`PlanetName`): planet to get bindu based on sign\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetAspectDegree",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Receiver\": {\n    \"Name\": \"Sun\"\n  },\n  \"Trasmitter\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAspectDegree",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAspectDegree"
              ]
            },
            "description": "Calculates the aspect strength or aspect value between two planets. The method calculates the longitudinal difference from the transmitting planet to the receiving planet normalizes the difference to the zodiac circle calculates the basic Drishti value adds any special Vishesha Drishti value for Mars Jupiter or Saturn returns the final aspect value.\n\n**Signature:** `PlanetAspectDegree(PlanetNamereceiver,PlanetNametrasmitter,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `receiver` (`PlanetName`): The planet receiving the aspect.\n- `trasmitter` (`PlanetName`): The planet transmitting the aspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetAvasta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAvasta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAvasta"
              ]
            },
            "description": "Returns all bAvasta statesb that match for a planet at the given time. The method checks the six supported Avastas in this section Lajjita Garvita Kshudita Trashita Trishita Mudita Kshobhita. Any matching states are collected into a list and returned.\n\n**Signature:** `PlanetAvasta(PlanetNameplanetName,Timetime)`  \n**Returns:** `List<Avasta>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetAyanaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetAyanaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetAyanaBala"
              ]
            },
            "description": "Calculates Ayana Bala the strength based on a planets declination and northern or southern course. The method gets the planets declination applies the planetspecific northsouth rule scales the result into Shashtiamsas.\n\n**Signature:** `PlanetAyanaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetBhamshaD27Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetBhamshaD27Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetBhamshaD27Sign"
              ]
            },
            "description": "Returns the planets Bhamsha Saptavimshamsha D27 sign at the given time. The method starts with the planets standard Rasi D1 sign and converts it into the corresponding D27 sign.\n\n**Signature:** `PlanetBhamshaD27Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetChaturthamshaD4Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetChaturthamshaD4Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetChaturthamshaD4Sign"
              ]
            },
            "description": "Returns the planets Chaturthamsha D4 sign at the given time. The method starts with the planets standard Rasi D1 sign and converts it into the corresponding D4 sign.\n\n**Signature:** `PlanetChaturthamshaD4Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetChaturvimshamshaD24Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetChaturvimshamshaD24Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetChaturvimshamshaD24Sign"
              ]
            },
            "description": "Returns the planets Chaturvimshamsha D24 sign at the given time. The method converts the planets Rasi sign into its D24 equivalent.\n\n**Signature:** `PlanetChaturvimshamshaD24Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetChestaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"UseSpecialSunMoon\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetChestaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetChestaBala"
              ]
            },
            "description": "Calculates Chesta Bala the motional strength of a planet. The method supports three different calculation paths Sun and Moon Normally return zero. When useSpecialSunMoon is true special IshtaKashta formulas are used. Rahu and Ketu Return zero in this implementation. Mars Mercury Jupiter Venus and Saturn Use the mean longitude true longitude and Seeghrochcha aphelionstyle value. The resulting Chesta Kendra is folded into a 0180 range. The final Chesta Bala is calculated by dividing by 3.\n\n**Signature:** `PlanetChestaBala(PlanetNameplanetName,Timetime,booluseSpecialSunMoon)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose Chesta Bala should be calculated.\n- `time` (`Time`): The chart time.\n- `useSpecialSunMoon` (`Boolean`): Whether to calculate the special SunMoon Chesta Bala used for IshtaKashta calculations."
          },
          "response": []
        },
        {
          "name": "PlanetCirculationTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetCirculationTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetCirculationTime"
              ]
            },
            "description": "Returns the circulation or orbital period used by Chesta Bala support calculations.\n\n**Signature:** `PlanetCirculationTime(PlanetNameplanetName)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose circulation time should be returned."
          },
          "response": []
        },
        {
          "name": "PlanetCombinedRelationshipWithPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MainPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"SecondaryPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetCombinedRelationshipWithPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetCombinedRelationshipWithPlanet"
              ]
            },
            "description": "Calculates the combined relationship between two planets by merging permanent and temporary relationships. The method excludes Rahu and Ketu from the calculation returns SamePlanet when both inputs are the same gets the permanent natural relationship gets the temporary positional relationship combines them according to the classical relationship table.\n\n**Signature:** `PlanetCombinedRelationshipWithPlanet(PlanetNamemainPlanet,PlanetNamesecondaryPlanet,Timetime)`  \n**Returns:** `PlanetToPlanetRelationship`\n\n**Parameters**\n- `mainPlanet` (`PlanetName`): The planet whose perspective is being used.\n- `secondaryPlanet` (`PlanetName`): The planet being judged from that perspective.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetConstellation"
              ]
            },
            "description": "Gets the constellation behind a planet at a given time\n\n**Signature:** `PlanetConstellation(PlanetNameplanet,Timetime)`  \n**Returns:** `Constellation`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetDasaEffectsBasedOnIshtaKashta",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDasaEffectsBasedOnIshtaKashta",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDasaEffectsBasedOnIshtaKashta"
              ]
            },
            "description": "Reference Bhava Graha Bala pg. 104 A planet with more lshta Phala is always supposed to be inclined to do good in its Dasa or Bhukti while a planet with more Kashta Phala is supposed to give rise to more evil results. In case of Venus in the Standard Horoscope the Kashta predominates over Ishta. Therefore in his Dasa or Bhukti Venus will give aJl sorts of miseries with regard to the bhavas ruled or aspected by him. As lord of the 5th house in such a circumstance Saturn is sure to cause loss of children and producing evil on this account.\n\n**Signature:** `PlanetDasaEffectsBasedOnIshtaKashta(PlanetNameplanetName,TimebirthTime)`  \n**Returns:** `String`\n\n**Parameters**\n- `planetName` (`PlanetName`): \n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetDashamamshaD10Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDashamamshaD10Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDashamamshaD10Sign"
              ]
            },
            "description": "Returns the planets Dashamamsha D10 sign at the given time. The method converts the planets Rasi sign into its D10 equivalent.\n\n**Signature:** `PlanetDashamamshaD10Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDebilitationPoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDebilitationPoint",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDebilitationPoint"
              ]
            },
            "description": "Returns the classical debilitation point for a planet. The result includes both the debilitation sign the exact debilitation degree inside that sign.\n\n**Signature:** `PlanetDebilitationPoint(PlanetNameplanetName)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose debilitation point should be returned."
          },
          "response": []
        },
        {
          "name": "PlanetDeclination",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDeclination",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDeclination"
              ]
            },
            "description": "Calculates the declination of a planet. Declination is the planets angular distance north or south of the celestial equator. The method gets the planets ecliptic position uses obliquity of the ecliptic converts the ecliptic position into declination.\n\n**Signature:** `PlanetDeclination(PlanetNameplanetName,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose declination should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDigBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDigBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDigBala"
              ]
            },
            "description": "Calculates Dig Bala the directional strength of a planet. The method assigns each planet a direction of maximum strength Jupiter and Mercury House 1 Sun and Mars House 10 Saturn House 7 Moon and Venus House 4 It then finds the opposite powerless house measures the shortest arc from the planet to that powerlesshouse midpoint divides the arc by 3 to get the Shashtiamsa value.\n\n**Signature:** `PlanetDigBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDignity",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Sign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDignity",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDignity"
              ]
            },
            "description": "Calculates planetary dignity in a zodiac sign. Used by Vimsopaka Bala and other strength calculations. The signonly overload applies JHoras complete default signlord table including node rows and the special dignity signs.\n\n**Signature:** `PlanetDignity(PlanetNameplanet,ZodiacNamesign)`  \n**Returns:** `PlanetDignityType`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `sign` (`ZodiacName`):"
          },
          "response": []
        },
        {
          "name": "PlanetDignityInDivisionalChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"DivisionalChart\": \"RasiD1\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDignityInDivisionalChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDignityInDivisionalChart"
              ]
            },
            "description": "Calculates the dignity of a planet in a requested divisional chart retaining the Varga degree and the charts compound relationships.\n\n**Signature:** `PlanetDignityInDivisionalChart(PlanetNameplanet,Timetime,stringdivisionalChart)`  \n**Returns:** `PlanetDignityType`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `time` (`Time`): \n- `divisionalChart` (`String`):"
          },
          "response": []
        },
        {
          "name": "PlanetDivisionalLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"DivisionalNo\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDivisionalLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDivisionalLongitude"
              ]
            },
            "description": "Calculates the divisional longitude of a planet for a specified divisional chart number. The method 1. gets the planets Nirayana longitude 2. multiplies that longitude by the divisional chart number 3. normalizes the result into the expected divisional range 4. returns the final angle. This is a generalpurpose helper for Dchart calculations.\n\n**Signature:** `PlanetDivisionalLongitude(PlanetNameplanetName,TimeinputTime,intdivisionalNo)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `inputTime` (`Time`): The chart time.\n- `divisionalNo` (`Int32`): The divisional chart number such as 2 3 4 7 or 9."
          },
          "response": []
        },
        {
          "name": "PlanetDrekkanaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDrekkanaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDrekkanaBala"
              ]
            },
            "description": "Calculates Drekkana Bala a positionalstrength component based on where a planet falls within a sign. The method follows these rules Masculine planets receive strength in the first Drekkana 010. Hermaphrodite planets receive strength in the second Drekkana 1020. Feminine planets receive strength in the third Drekkana 2030.\n\n**Signature:** `PlanetDrekkanaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDrekkanaD3Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDrekkanaD3Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDrekkanaD3Sign"
              ]
            },
            "description": "Returns the planets Drekkana D3 sign at the given time. The method converts the planets Rasi sign into its Drekkana equivalent.\n\n**Signature:** `PlanetDrekkanaD3Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDrikBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Target\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDrikBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDrikBala"
              ]
            },
            "description": "Calculates Drik Bala the aspect strength of a planet. The method excludes Rahu and Ketu loops through the seven classical planets calculates the angular distance from each aspecting planet to the target calculates the basic Drishti value adds special Vishesha Drishti for Mars Jupiter or Saturn treats Mercury as benefic for Drik Bala treats other planets as positive or negative depending on benefic status divides the accumulated Drishti Pinda by 4.\n\n**Signature:** `PlanetDrikBala(PlanetNametarget,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `target` (`PlanetName`): The planet receiving aspect strength.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDwadasaVargeeyaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDwadasaVargeeyaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDwadasaVargeeyaBala"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `PlanetDwadasaVargeeyaBala(Timetime)`  \n**Returns:** `List<JHoraDwadasaVargeeyaPlanet>`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetDwadashamshaD12Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDwadashamshaD12Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDwadashamshaD12Sign"
              ]
            },
            "description": "Returns the planets Dwadashamsha D12 sign at the given time. The method converts the planets Rasi sign into its D12 equivalent.\n\n**Signature:** `PlanetDwadashamshaD12Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetDwadashamshaSignOLD",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetDwadashamshaSignOLD",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetDwadashamshaSignOLD"
              ]
            },
            "description": "Calculates a planets Dwadashamsha D12 sign using an older manual method retained in the codebase. The method gets the planets Rasi sign and degree within that sign determines which twelfthpart division the planet occupies counts forward from the planets sign by that division number returns the resulting zodiac sign name. This preserves a legacy calculation path for comparison with the newer tabledriven implementation.\n\n**Signature:** `PlanetDwadashamshaSignOLD(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetEphemerisLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetEphemerisLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetEphemerisLongitude"
              ]
            },
            "description": "Returns a planets raw ephemeris longitude from Swiss Ephemeris. The method acts as a lowerlevel bridge between VedAstro planet names and Swiss Ephemeris planet IDs. It calculates the requested planets longitude at the given time and returns it as an Angle.\n\n**Signature:** `PlanetEphemerisLongitude(PlanetNameplanetName,Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose ephemeris longitude should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetExaltationPoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetExaltationPoint",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetExaltationPoint"
              ]
            },
            "description": "Returns the classical exaltation point for a planet. The result includes both the exaltation sign the exact exaltation degree inside that sign.\n\n**Signature:** `PlanetExaltationPoint(PlanetNameplanetName)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose exaltation point should be returned."
          },
          "response": []
        },
        {
          "name": "PlanetHarshaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetHarshaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetHarshaBala"
              ]
            },
            "description": "Calculates JHoras Harsha Bala. FUN_004C0FD0 applies four independent fivepoint tests to the seven visible planets planetspecific favorable house own or exalted sign the native genderhousegroup test and daynight agreement with planetary gender. Scores are therefore 0 5 10 15 or 20 Rahu and Ketu are excluded.\n\n**Signature:** `PlanetHarshaBala(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "PlanetHoraBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetHoraBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetHoraBala"
              ]
            },
            "description": "Calculates Hora Bala also called Horadhipathi Bala. The method awards strength when the planet is the lord of the Hora active at the supplied time.\n\n**Signature:** `PlanetHoraBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetHoraD2Signs",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetHoraD2Signs",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetHoraD2Signs"
              ]
            },
            "description": "Returns the planets Hora D2 sign at the given time. The method starts from the planets Rasi sign and converts it into the corresponding Hora sign.\n\n**Signature:** `PlanetHoraD2Signs(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignName\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetInSign"
              ]
            },
            "description": "Returns all planets currently located in the requested zodiac sign. The method explicitly calculates the sign of each of the nine planets and adds every matching planet to the return list.\n\n**Signature:** `PlanetInSign(ZodiacNamesignName,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `signName` (`ZodiacName`): The sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetIshtaKashtaScoreDegree",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetIshtaKashtaScoreDegree",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetIshtaKashtaScoreDegree"
              ]
            },
            "description": "Converts a planets Ishta and Kashta scores into a compact beneficversusmalefic scale. The method calculates the planets Ishta score calculates the planets Kashta score compares the two scores as a percentage of total strength maps the result from 100..100 into a final 4..4 range rounds the final value to three decimal places.\n\n**Signature:** `PlanetIshtaKashtaScoreDegree(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetIshtaScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetIshtaScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetIshtaScore"
              ]
            },
            "description": "Calculates Ishta Phala the favorable or beneficial strength of a planet. The method returns 0 for Rahu and Ketu calculates the planets Ochcha Bala calculates the planets Chesta Bala using the special SunMoon path multiplies those two values returns the square root of the product.\n\n**Signature:** `PlanetIshtaScore(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetKalaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetKalaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetKalaBala"
              ]
            },
            "description": "Calculates Kala Bala the temporal strength of a planet. The method combines several timebased substrengths including Nathonnatha Bala Paksha Bala Tribhaga Bala Abda Bala Masa Bala Vara Bala Hora Bala Ayana Bala Yuddha Bala\n\n**Signature:** `PlanetKalaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose temporal strength should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetKashtaScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetKashtaScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetKashtaScore"
              ]
            },
            "description": "Calculates Kashta Phala the difficult or unfavorable strength of a planet. The method returns 0 for Rahu and Ketu calculates the planets Ochcha Bala calculates the planets Chesta Bala using the special SunMoon path subtracts both values from 60 multiplies the adjusted values returns the square root of that product.\n\n**Signature:** `PlanetKashtaScore(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetKendraBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetKendraBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetKendraBala"
              ]
            },
            "description": "Calculates Kendra Bala the strength a planet receives from its house category. The method assigns strength based on the planets house placement Kendras 1 4 7 10 60 Panaparas 2 5 8 11 30 Apoklimas 3 6 9 12 15\n\n**Signature:** `PlanetKendraBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetKhavedamshaD40Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetKhavedamshaD40Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetKhavedamshaD40Sign"
              ]
            },
            "description": "Returns the planets Khavedamsha D40 sign at the given time. The method converts the planets Rasi sign into its D40 equivalent.\n\n**Signature:** `PlanetKhavedamshaD40Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetLordOfConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetLordOfConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetLordOfConstellation"
              ]
            },
            "description": "Returns the lord of the constellation occupied by a planet. The method calculates the planets Nirayana longitude finds the constellation at that longitude returns the planetary lord of that constellation.\n\n**Signature:** `PlanetLordOfConstellation(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose constellation lord should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetLordOfZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetLordOfZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetLordOfZodiacSign"
              ]
            },
            "description": "Returns the lord of the zodiac sign occupied by a planet. The method calculates the planets Nirayana longitude converts that longitude to a zodiac sign returns the lord of that sign.\n\n**Signature:** `PlanetLordOfZodiacSign(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `PlanetName`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose sign lord should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetMasaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetMasaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetMasaBala"
              ]
            },
            "description": "Calculates Masa Bala the monthly lord strength. The method awards strength to the planet that rules the month of birth.\n\n**Signature:** `PlanetMasaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The birth or chart time."
          },
          "response": []
        },
        {
          "name": "PlanetMotionName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetMotionName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetMotionName"
              ]
            },
            "description": "Determines the motion state Gati of a planet according to classical Vedic astrology rules. The method uses different logic depending on the planet Sun and Moon are always treated as Sama or normal motion. Rahu and Ketu are always treated as Vakra or retrograde. Mars Jupiter and Saturn are classified by their sign distance from the Sun. Mercury and Venus are classified using Chesta Bala and actual motion speed.\n\n**Signature:** `PlanetMotionName(PlanetNameplanetName,Timetime)`  \n**Returns:** `PlanetMotion`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose motion should be classified.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetNaisargikaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetNaisargikaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetNaisargikaBala"
              ]
            },
            "description": "Returns the planets Naisargika Bala or natural strength. Naisargika Bala is the inherent brightnessbased strength of a planet. In this implementation the values are fixed constants Sun 60 Moon 51.43 Venus 42.85 Jupiter 34.28 Mercury 25.70 Mars 17.14 Saturn 8.57\n\n**Signature:** `PlanetNaisargikaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose natural strength should be returned.\n- `time` (`Time`): Included for signature consistency but not used in the current calculation."
          },
          "response": []
        },
        {
          "name": "PlanetNathonnathaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetNathonnathaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetNathonnathaBala"
              ]
            },
            "description": "Calculates Nathonnatha Bala also called Divaratri Bala. The method returns full strength for Mercury converts the birth time to local apparent time finds apparent noon measures the distance from apparent noon converts that distance into ghatis applies dayplanet or nightplanet rules. Planet groups Sun Jupiter and Venus gain day strength. Moon Mars and Saturn gain night strength. Mercury always receives 60.\n\n**Signature:** `PlanetNathonnathaBala(PlanetNameplanet,TimebirthTime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The birth chart time."
          },
          "response": []
        },
        {
          "name": "PlanetNatureScore",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PersonBirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetNatureScore",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetNatureScore"
              ]
            },
            "description": "Calculates a simplified bnature scoreb for a planet based on its Shadbaladerived strength. The method 1. calculates the planets Shadbala Pinda strength 2. maps that strength into broad score bands 3. returns a simplified positive or negative result. This is a summaryoriented helper intended for easy interpretation rather than full technical analysis.\n\n**Signature:** `PlanetNatureScore(TimepersonBirthTime,PlanetNameinputPlanet)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `personBirthTime` (`Time`): The natal chart time.\n- `inputPlanet` (`PlanetName`): The planet to score."
          },
          "response": []
        },
        {
          "name": "PlanetNavamshaD9Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetNavamshaD9Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetNavamshaD9Sign"
              ]
            },
            "description": "Returns the planets Navamsha D9 sign at the given time. The method converts the planets Rasi sign into its D9 equivalent.\n\n**Signature:** `PlanetNavamshaD9Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetNirayanaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetNirayanaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetNirayanaLongitude"
              ]
            },
            "description": "Returns a planets Nirayana sidereal longitude at the supplied time. The method checks the cache handles Upagrahas separately by routing to their special longitude methods uses the manual Raman path when the selected ayanamsa is Raman otherwise uses Swiss Ephemeris sidereal calculation adjusts Ketu by adding 180 to Rahus longitude where needed.\n\n**Signature:** `PlanetNirayanaLongitude(PlanetNameplanetName,Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet or Upagraha to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetOchchaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetOchchaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetOchchaBala"
              ]
            },
            "description": "Calculates Ochcha Bala the planets exaltation strength. The method gets the planets current longitude gets the planets debilitation point measures the angular distance from the debilitation point folds the result into the shortest valid arc when needed divides the distance by 3.\n\n**Signature:** `PlanetOchchaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetOjayugmarasyamsaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetOjayugmarasyamsaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetOjayugmarasyamsaBala"
              ]
            },
            "description": "Calculates Ojayugmarasyamsa Bala strength from oddeven placement in Rasi and Navamsha. The method checks whether the planet is in the sign parity favored by its class Sun Mars Jupiter Mercury and Saturn gain strength in odd signs. Moon and Venus gain strength in even signs. The same idea is applied to both Rasi and Navamsha positions.\n\n**Signature:** `PlanetOjayugmarasyamsaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetOwnAshtakvargaBindu",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetOwnAshtakvargaBindu",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetOwnAshtakvargaBindu"
              ]
            },
            "description": "Gets bindus for planet in its own Ashtakavarga in the sign it is in\n\n**Signature:** `PlanetOwnAshtakvargaBindu(PlanetNameplanet,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): \n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetPakshaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetPakshaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetPakshaBala"
              ]
            },
            "description": "Calculates Paksha Bala strength based on the Moons phase. The method measures the angular distance between the Moon and Sun derives separate base values for Subha and Papa planets classifies the Moon by waxing or waning phase classifies Mercury by whether it is malefic applies the appropriate base value to the requested planet doubles the Moons Paksha Bala.\n\n**Signature:** `PlanetPakshaBala(PlanetNameplanet,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetPanchaVargeeyaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetPanchaVargeeyaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetPanchaVargeeyaBala"
              ]
            },
            "description": "Calculates Planet Pancha Vargeeya Bala. Pancha Vargeeya Bala evaluates planetary strength through five important Vargas D1 Rasi D2 Hora D3 Drekkana D9 Navamsa D12 Dwadasamsa Based on Jagannatha Hora calculation method.\n\n**Signature:** `PlanetPanchaVargeeyaBala(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth time"
          },
          "response": []
        },
        {
          "name": "PlanetPanchaVargeeyaBalaLegacy",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetPanchaVargeeyaBalaLegacy",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetPanchaVargeeyaBalaLegacy"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `PlanetPanchaVargeeyaBalaLegacy(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetPermanentRelationshipWithPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MainPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"SecondaryPlanet\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetPermanentRelationshipWithPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetPermanentRelationshipWithPlanet"
              ]
            },
            "description": "Returns the permanent natural relationship between two planets. The method uses fixed classical friendship neutrality and enmity tables for the seven classical planets.\n\n**Signature:** `PlanetPermanentRelationshipWithPlanet(PlanetNamemainPlanet,PlanetNamesecondaryPlanet)`  \n**Returns:** `PlanetToPlanetRelationship`\n\n**Parameters**\n- `mainPlanet` (`PlanetName`): The planet whose perspective is being used.\n- `secondaryPlanet` (`PlanetName`): The planet being judged from the main planets perspective."
          },
          "response": []
        },
        {
          "name": "PlanetPowerPercentage",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetPowerPercentage",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetPowerPercentage"
              ]
            },
            "description": "Converts a planets Shadbala strength into a relative percentage score. The method calculates the strength of all planets finds the strength of the requested planet identifies the weakest and strongest planet values remaps the requested planets strength onto a 0100 scale.\n\n**Signature:** `PlanetPowerPercentage(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose relative power should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetRasiD1Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetRasiD1Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetRasiD1Sign"
              ]
            },
            "description": "Returns the planets standard Rasi D1 sign at the given time. The method uses caching to avoid repeated calculation gets the planets Nirayana longitude converts that longitude into a zodiac sign returns the final ZodiacSign.\n\n**Signature:** `PlanetRasiD1Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetRelationshipWithHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"House\": \"House1\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetRelationshipWithHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetRelationshipWithHouse"
              ]
            },
            "description": "Returns a planets relationship with a house based on the sign occupying that house. The method gets the zodiac sign assigned to the house evaluates the planets relationship to that sign returns the resulting planettosign relationship.\n\n**Signature:** `PlanetRelationshipWithHouse(HouseNamehouse,PlanetNameplanet,Timetime)`  \n**Returns:** `PlanetToSignRelationship`\n\n**Parameters**\n- `house` (`HouseName`): The house being judged.\n- `planet` (`PlanetName`): The planet whose relationship to the house is being evaluated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetRelationshipWithSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"ZodiacSignName\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetRelationshipWithSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetRelationshipWithSign"
              ]
            },
            "description": "Returns a planets relationship to a zodiac sign based on the planets relationship with that signs lord. The method excludes Rahu and Ketu from the calculation gets the lord of the requested sign returns OwnVarga when the planet itself rules the sign otherwise calculates the combined relationship between the planet and the sign lord converts that planettoplanet relationship into a planettosign relationship.\n\n**Signature:** `PlanetRelationshipWithSign(PlanetNameplanetName,ZodiacNamezodiacSignName,Timetime)`  \n**Returns:** `PlanetToSignRelationship`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet being judged.\n- `zodiacSignName` (`ZodiacName`): The sign being judged.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSaptamshaD7Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSaptamshaD7Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSaptamshaD7Sign"
              ]
            },
            "description": "Returns the planets Saptamsha D7 sign at the given time. The method converts the planets Rasi sign into its D7 equivalent.\n\n**Signature:** `PlanetSaptamshaD7Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSaptamshaSignOLD",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSaptamshaSignOLD",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSaptamshaSignOLD"
              ]
            },
            "description": "Calculates a planets Saptamsha D7 sign using an older legacy method retained for reference and comparison. The method 1. gets the planets Rasi sign and degree within that sign 2. determines which seventhpart division the planet falls into 3. applies different counting rules for odd and even signs 4. returns the resulting zodiac sign name. This method appears to preserve an older B. V. Ramanstyle approach and is clearly marked in the source as legacy logic.\n\n**Signature:** `PlanetSaptamshaSignOLD(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSaptavargajaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSaptavargajaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSaptavargajaBala"
              ]
            },
            "description": "Calculates Saptavargaja Bala the strength a planet receives from its dignity across seven divisional placements. The method evaluates the planets condition in the following charts Rasi Hora Drekkana Saptamsha Navamsha Dwadashamsha Trimshamsha For each divisional placement strength is assigned according to whether the planet is in a favorable neutral own exalted or hostile placement.\n\n**Signature:** `PlanetSaptavargajaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsAspectingHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputHouse\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsAspectingHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsAspectingHouse"
              ]
            },
            "description": "Returns all planets that aspect a given house. The method loops through all nine planets gets the houses aspected by each planet adds planets whose aspectedhouse list contains the requested house.\n\n**Signature:** `PlanetsAspectingHouse(HouseNameinputHouse,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputHouse` (`HouseName`): The house receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsAspectingPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ReceivingAspect\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsAspectingPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsAspectingPlanet"
              ]
            },
            "description": "Returns all planets that aspect a given planet. The method checks all nine planets and keeps those for which IsPlanetAspectedByPlanet... returns true.\n\n**Signature:** `PlanetsAspectingPlanet(PlanetNamereceivingAspect,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `receivingAspect` (`PlanetName`): The planet receiving aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSayanaLatitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSayanaLatitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSayanaLatitude"
              ]
            },
            "description": "Returns a planets Sayana tropical latitude at the supplied time. The method checks the cache converts the time to Julian Ephemeris Time maps the planet to a Swiss Ephemeris planet ID calculates the planets tropical position returns the latitude component as an Angle.\n\n**Signature:** `PlanetSayanaLatitude(PlanetNameplanetName,Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose latitude should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSayanaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSayanaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSayanaLongitude"
              ]
            },
            "description": "Returns a planets Sayana tropical longitude at the supplied time. The method checks the cache converts the time to Julian Ephemeris Time maps the VedAstro planet name to a Swiss Ephemeris planet ID calculates the tropical longitude using Swiss Ephemeris adjusts Ketu by adding 180 to Rahus longitude.\n\n**Signature:** `PlanetSayanaLongitude(PlanetNameplanetName,Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to calculate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetShadbalaPinda",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetShadbalaPinda",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetShadbalaPinda"
              ]
            },
            "description": "Calculates the final total Shadbala Pinda for a planet. The method adds the six main planetary strength components Sthana Bala positional strength Dig Bala directional strength Kala Bala temporal strength Chesta Bala motional strength Naisargika Bala natural strength Drik Bala aspect strength added or subtracted depending on sign For Rahu and Ketu the method uses the strength of the lord of the house occupied by the node.\n\n**Signature:** `PlanetShadbalaPinda(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose Shadbala should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetShashtyamshaD60Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetShashtyamshaD60Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetShashtyamshaD60Sign"
              ]
            },
            "description": "Returns the planets Shashtyamsha D60 sign at the given time. The method converts the planets Rasi sign into its D60 equivalent.\n\n**Signature:** `PlanetShashtyamshaD60Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetShodashamshaD16Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetShodashamshaD16Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetShodashamshaD16Sign"
              ]
            },
            "description": "Returns the planets Shodashamsha D16 sign at the given time. The method converts the planets Rasi sign into its D16 equivalent.\n\n**Signature:** `PlanetShodashamshaD16Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSignTransit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"StartTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EndTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSignTransit",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSignTransit"
              ]
            },
            "description": "Calculates the periods during which a planet stays in each bzodiac signb between two times. The method 1. generates time slices across the requested range 2. tracks sign changes for the selected planet 3. records each finished sign interval as a tuple of start time end time sign name planet name.\n\n**Signature:** `PlanetSignTransit(TimestartTime,TimeendTime,PlanetNameplanetName)`  \n**Returns:** `List<Tuple<Time, Time, ZodiacName, PlanetName>>`\n\n**Parameters**\n- `startTime` (`Time`): Beginning of the scan range.\n- `endTime` (`Time`): End of the scan range.\n- `planetName` (`PlanetName`): The planet whose sign transits should be tracked."
          },
          "response": []
        },
        {
          "name": "PlanetsInAspect",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInAspect",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInAspect"
              ]
            },
            "description": "Returns all planets that receive aspects from the input planet. The method calculates the signs aspected by the input planet finds all planets located in those signs returns the combined planet list.\n\n**Signature:** `PlanetsInAspect(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet casting aspects.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsInConjunction",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInConjunction",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInConjunction"
              ]
            },
            "description": "Returns all planets in conjunction with a given planet. The method sets an 8degree conjunction orb gets the longitude of the input planet gets the longitudes of all nine planets excludes the input planet itself adds every planet within the conjunction orb.\n\n**Signature:** `PlanetsInConjunction(PlanetNameinputPlanet,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `inputPlanet` (`PlanetName`): The planet whose conjunctions should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsInGocharaHouse",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CurrentTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"GocharaHouse\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInGocharaHouse",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInGocharaHouse"
              ]
            },
            "description": "Returns all planets currently occupying a specific Gochara house where the house count is measured from the natal Moon sign. The method calculates the Gochara house for each tracked planet and returns a list of all planets whose current transit count matches the requested house. The current implementation checks Sun Moon Mars Mercury Jupiter Venus and Saturn.\n\n**Signature:** `PlanetsInGocharaHouse(TimebirthTime,TimecurrentTime,intgocharaHouse)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `currentTime` (`Time`): The transit time being checked.\n- `gocharaHouse` (`Int32`): The Gochara house number to search."
          },
          "response": []
        },
        {
          "name": "PlanetsInHouseBasedOnLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInHouseBasedOnLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInHouseBasedOnLongitudes"
              ]
            },
            "description": "Returns all planets located in a specific house using house longitude boundaries. The method gets all house longitude ranges selects the requested house gets the Nirayana longitude of all planets checks which planetary longitudes fall inside that houses range.\n\n**Signature:** `PlanetsInHouseBasedOnLongitudes(HouseNamehouseNumber,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsInHouseBasedOnSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"HouseNumber\": \"House1\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInHouseBasedOnSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInHouseBasedOnSign"
              ]
            },
            "description": "Returns all planets located in a specific house using signbased house mapping. The method gets the zodiac sign assigned to the requested house finds all planets currently occupying that sign returns the matching planets.\n\n**Signature:** `PlanetsInHouseBasedOnSign(HouseNamehouseNumber,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `houseNumber` (`HouseName`): The house to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetsInSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"SignName\": \"Aries\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetsInSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetsInSign"
              ]
            },
            "description": "Returns all planets currently occupying a given zodiac sign. The method checks all nine planets and collects those whose Rasi sign matches the requested sign.\n\n**Signature:** `PlanetsInSign(ZodiacNamesignName,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `signName` (`ZodiacName`): The zodiac sign to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSodyaPinda",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"UseReduced\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSodyaPinda",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSodyaPinda"
              ]
            },
            "description": "Calculates the Sodya Pinda for a planets Ashtakavarga. The method returns the combined Pinda value used in a range of timing strength and longevity calculations.\n\n**Signature:** `PlanetSodyaPinda(PlanetNameplanet,TimebirthTime,booluseReduced)`  \n**Returns:** `SodyaPindaResult`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The natives birth time.\n- `useReduced` (`Boolean`): Whether the reduced Ashtakavarga figures should be used."
          },
          "response": []
        },
        {
          "name": "PlanetSpeed",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSpeed",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSpeed"
              ]
            },
            "description": "Returns the planets longitudinal speed at the supplied time. The method checks the cache converts the time to Julian Ephemeris Time calls Swiss Ephemeris with speed flags enabled returns the longitudespeed component from the result.\n\n**Signature:** `PlanetSpeed(PlanetNameplanetName,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose speed should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetSthanaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetSthanaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetSthanaBala"
              ]
            },
            "description": "Calculates Sthana Bala the positional strength of a planet. The method combines the major subcomponents of positional strength Ochcha Bala exaltation strength. Saptavargaja Bala dignity across seven divisions. Ojayugmarasyamsa Bala oddeven sign and Navamsha strength. Kendra Bala strength from Kendra Panapara or Apoklima placement. Drekkana Bala strength from position in the correct Drekkana for the planets gender class.\n\n**Signature:** `PlanetSthanaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose positional strength should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetStrength"
              ]
            },
            "description": "Alias for PlanetShadbalaPinda.... This method exists as a simpler easiertoremember name for retrieving a planets total Shadbala strength.\n\n**Signature:** `PlanetStrength(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetTajikaConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ScanYear\": 2026\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTajikaConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTajikaConstellation"
              ]
            },
            "description": "Returns the Tajika constellation of a planet for a specific year. The method gets the planets Tajika longitude converts that longitude into a constellation returns the final Constellation. This is the constellationlevel view of a planets Tajika placement.\n\n**Signature:** `PlanetTajikaConstellation(PlanetNameplanetName,TimebirthTime,intscanYear)`  \n**Returns:** `Constellation`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The natives birth time.\n- `scanYear` (`Int32`): The target year for the Tajika chart."
          },
          "response": []
        },
        {
          "name": "PlanetTajikaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ScanYear\": 2026\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTajikaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTajikaLongitude"
              ]
            },
            "description": "Returns the Tajika longitude of a planet for a specific year. The method calculates the Tajika or annualreturn date for the requested year finds the planets Nirayana longitude at that annualreturn moment returns the resulting longitude. This is useful when building or analyzing a Tajika Varshaphala chart for a given year of life.\n\n**Signature:** `PlanetTajikaLongitude(PlanetNameplanetName,TimebirthTime,intscanYear)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The natives birth time.\n- `scanYear` (`Int32`): The target year for the Tajika calculation."
          },
          "response": []
        },
        {
          "name": "PlanetTajikaZodiacSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ScanYear\": 2026\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTajikaZodiacSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTajikaZodiacSign"
              ]
            },
            "description": "Returns the Tajika zodiac sign of a planet for a specific year. The method calculates the planets Tajika longitude converts that longitude into a zodiac sign returns the resulting ZodiacSign. This provides the sign placement of the planet in the annual Tajika chart.\n\n**Signature:** `PlanetTajikaZodiacSign(PlanetNameplanetName,TimebirthTime,intscanYear)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `birthTime` (`Time`): The natives birth time.\n- `scanYear` (`Int32`): The target year for the Tajika chart."
          },
          "response": []
        },
        {
          "name": "PlanetTemporaryFriendList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTemporaryFriendList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTemporaryFriendList"
              ]
            },
            "description": "Returns the planets that are temporary friends of a given planet based on sign position. The method gets the planets current sign identifies the signs in the 2nd 3rd 4th 10th 11th and 12th positions from it collects planets placed in those signs removes Rahu and Ketu from the result.\n\n**Signature:** `PlanetTemporaryFriendList(PlanetNameplanetName,Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose temporary friends should be found.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetTemporaryRelationshipWithPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"MainPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"SecondaryPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTemporaryRelationshipWithPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTemporaryRelationshipWithPlanet"
              ]
            },
            "description": "Returns the temporary relationship between two planets based on their relative sign positions. The method returns SamePlanet when both inputs are the same gets the temporary friend list of the main planet returns Friend if the secondary planet is in that list otherwise returns Enemy.\n\n**Signature:** `PlanetTemporaryRelationshipWithPlanet(PlanetNamemainPlanet,PlanetNamesecondaryPlanet,Timetime)`  \n**Returns:** `PlanetToPlanetRelationship`\n\n**Parameters**\n- `mainPlanet` (`PlanetName`): The planet whose temporary relationship is being judged.\n- `secondaryPlanet` (`PlanetName`): The planet being compared.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetTribhagaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTribhagaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTribhagaBala"
              ]
            },
            "description": "Calculates Tribhaga Bala strength from the onethird division of day or night. The method follows these rules During the day Mercury gains strength in the first third. Sun gains strength in the second third. Saturn gains strength in the third third. During the night Moon gains strength in the first third. Venus gains strength in the second third. Mars gains strength in the third third. Jupiter always receives full Tribhaga Bala.\n\n**Signature:** `PlanetTribhagaBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetTrimshamshaD30Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetTrimshamshaD30Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetTrimshamshaD30Sign"
              ]
            },
            "description": "Returns the planets Trimshamsha D30 sign at the given time. Unlike most other divisional methods in this section this one uses dedicated D30 logic rather than a simple tablebased conversion. The method converts the planets Rasi sign into its D30 result using the Trimshamshaspecific division rules preserved in the source.\n\n**Signature:** `PlanetTrimshamshaD30Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetVaiseshikamsa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetVaiseshikamsa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetVaiseshikamsa"
              ]
            },
            "description": "Calculates JHoras Vaiseshikamsa Dasa count. FUN_004C05F0 calls FUN_004A6AF0 once for every body and every varga in the native Dasavarga list. This is a count of accepted placements not a weighted dignity average. JHoras internal list is D1 D3 D4 D9 D2 D10 D12 D16 D30 and D60. FUN_004A6AF0 first accepts own sign exaltation or the native specialdignity Moolatrikona sign. Friendlyneutral placements do not count in the default JHora preference mode. Maximum score 10\n\n**Signature:** `PlanetVaiseshikamsa(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "PlanetVaraBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetVaraBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetVaraBala"
              ]
            },
            "description": "Calculates Vara Bala the weekday lord strength. The method awards strength to the planet that rules the day of birth.\n\n**Signature:** `PlanetVaraBala(PlanetNameplanetName,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The birth or chart time."
          },
          "response": []
        },
        {
          "name": "PlanetVimshamshaD20Sign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetVimshamshaD20Sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetVimshamshaD20Sign"
              ]
            },
            "description": "Returns the planets Vimshamsha D20 sign at the given time. The method converts the planets Rasi sign into its D20 equivalent.\n\n**Signature:** `PlanetVimshamshaD20Sign(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetVimsopakaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetVimsopakaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetVimsopakaBala"
              ]
            },
            "description": "Empty sample text\n\n**Signature:** `PlanetVimsopakaBala(Timetime)`  \n**Returns:** `List<JHoraVimsopakaPlanet>`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PlanetYuddhaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Target\": {\n    \"Name\": \"Sun\"\n  },\n  \"PreKalaBalaValues\": {\n    \"Sun\": 103.244,\n    \"Moon\": 195.338,\n    \"Mars\": 28.665,\n    \"Mercury\": 191.879,\n    \"Jupiter\": 210.36,\n    \"Venus\": 117.7177,\n    \"Saturn\": 114.849\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetYuddhaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetYuddhaBala"
              ]
            },
            "description": "Calculates Yuddha Bala the strength adjustment from planetary war. The method checks whether the target planet is eligible for Graha Yuddha searches for nearby eligible planets within the war threshold determines the victorious and defeated planets calculates the strength difference using prewar Kala Bala values adjusts the result according to the planetarywar rule.\n\n**Signature:** `PlanetYuddhaBala(PlanetNametarget,Dictionary<PlanetName,Shashtiamsa>preKalaBalaValues,Timetime)`  \n**Returns:** `Shashtiamsa`\n\n**Parameters**\n- `target` (`PlanetName`): The planet whose Yuddha Bala adjustment should be calculated.\n- `preKalaBalaValues` (`Dictionary<PlanetName, Shashtiamsa>`): Kala Bala values before the war adjustment is applied.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PlanetZodiacSignBasedOnHouseLongitudes",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PlanetZodiacSignBasedOnHouseLongitudes",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PlanetZodiacSignBasedOnHouseLongitudes"
              ]
            },
            "description": "Returns a planets zodiac sign based on the house it occupies according to house longitudes. The method finds which house the planet occupies using houseboundary logic gets the Bhava Chalit sign for that house returns the resulting sign. This is a D0style housebased sign lookup rather than a direct Rasi sign lookup.\n\n**Signature:** `PlanetZodiacSignBasedOnHouseLongitudes(PlanetNameplanetName,Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to inspect.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "PrastaraAshtakavarga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PrastaraAshtakavarga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PrastaraAshtakavarga"
              ]
            },
            "description": "Calculates Prastara Ashtakavarga. Generates the raw BinduRekha matrix used by Bhinnashtakavarga Sarvashtakavarga Sodhya Ashtakavarga Rows Sun Moon Mars Mercury Jupiter Venus Saturn Lagna Columns 12 houses 1 Bindu 0 Rekha\n\n**Signature:** `PrastaraAshtakavarga(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "PredictMedicalHealthConditions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PredictMedicalHealthConditions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PredictMedicalHealthConditions"
              ]
            },
            "description": "Predicts a persons likely health conditions and bodily vulnerabilities from their birth chart. Computes the fundamental chart data once then maps afflicted and weak planets to the body parts and organs they rule to highlight areas of medical concern. Returns a structured report of predicted conditions grouped by organ and ruling planet based on Vedic medical astrology.\n\n**Signature:** `PredictMedicalHealthConditions(TimebirthTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time of the person to assess."
          },
          "response": []
        },
        {
          "name": "PreviousNewMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/PreviousNewMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "PreviousNewMoon"
              ]
            },
            "description": "Finds the bmost recent New Moonb before the supplied time by scanning backward in small time steps. The method starts at the input time moves backward in 30minute increments checks the SunMoon conjunction angle at each step returns the first time where the conjunction angle is under 1 degree.\n\n**Signature:** `PreviousNewMoon(TimeinputTime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `inputTime` (`Time`): The starting point for the backward scan."
          },
          "response": []
        },
        {
          "name": "RahuKala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/RahuKala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "RahuKala"
              ]
            },
            "description": "Calculates the Rahu Kala interval for the Vedic day containing the supplied time. Daylight from sunrise to sunset is divided into eight equal parts.\n\n**Signature:** `RahuKala(Timetime)`  \n**Returns:** `TimeRange`\n\n**Parameters**\n- `time` (`Time`): The time and location to evaluate."
          },
          "response": []
        },
        {
          "name": "RekhaSarvashtakavargaReductions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/RekhaSarvashtakavargaReductions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "RekhaSarvashtakavargaReductions"
              ]
            },
            "description": "Returns the Rekha Sarvashtakavarga result after the full reduction pipeline. This is the reduced 56bindu style Sarvashtakavarga variant referenced in the source comments.\n\n**Signature:** `RekhaSarvashtakavargaReductions(TimebirthTime)`  \n**Returns:** `SarvashtakavargaReductionResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "RekhaSodyaPinda",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/RekhaSodyaPinda",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "RekhaSodyaPinda"
              ]
            },
            "description": "Calculates Sodya Pinda from the reduced Rekha Sarvashtakavarga figures.\n\n**Signature:** `RekhaSodyaPinda(TimebirthTime)`  \n**Returns:** `SodyaPindaResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "ResidentialStrength",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ResidentialStrength",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ResidentialStrength"
              ]
            },
            "description": "Calculates the residential strength of a planet inside the house it occupies. The method finds the planets house using longitudebased house boundaries gets the beginning middle and end longitudes of that house gets the planets actual longitude determines whether the planet lies in the first half or second half of the house returns a proportional strength value based on its position within that half.\n\n**Signature:** `ResidentialStrength(PlanetNameplanetName,Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose residential strength should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "RootNumberFriendship",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"RootNumberA\": 1,\n  \"RootNumberB\": 2\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/RootNumberFriendship",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "RootNumberFriendship"
              ]
            },
            "description": "Given 2 root numbers 19 returns their compatibility as Good Bad or Neutral\n\n**Signature:** `RootNumberFriendship(introotNumberA,introotNumberB)`  \n**Returns:** `String`\n\n**Parameters**\n- `rootNumberA` (`Int32`): First root number 19\n- `rootNumberB` (`Int32`): Second root number 19"
          },
          "response": []
        },
        {
          "name": "Samvatsara",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Samvatsara",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Samvatsara"
              ]
            },
            "description": "Gets the bSamvatsarab the name of the Hindu lunar year from the 60year Jupiter cycle e.g. Prabhava Vikari Sarwari for a given time. The method 1. scans backward new moon by new moon until it finds the new moon with the Moon in sidereal Pisces this new moon begins the lunar month of Chaitra and Chaitra Shukla Pratipada the day after it is the Hindu lunar new year 2. takes the calendar year in which that Chaitra new moon fell always MarchApril 3. counts years by simple succession modulo 60 from a verified anchor the lunar year beginning at Chaitra 2019 was Vikari 33. Anchor crosschecks from classical literature B.V. Raman My Experiences in Astrology records Vikari as 1899 A.D. 1899 60 60 2019 Ramans Hindu Predictive Astrology Chapter III lists the 60 names in order. Effects of each year are given in Brihat Samhita Adhyaya VIII. Note names follow simple succession the system used by modern pancangas not the meanJupiter motion method with expunged years used in some northern traditions.\n\n**Signature:** `Samvatsara(TimeinputTime)`  \n**Returns:** `Samvatsara`\n\n**Parameters**\n- `inputTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "SamvatsaraName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SamvatsaraName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SamvatsaraName"
              ]
            },
            "description": "Returns the current Samvatsara name from the sixtyyear cycle. This is a convenience wrapper around the existing Samvatsara calculation.\n\n**Signature:** `SamvatsaraName(Timetime)`  \n**Returns:** `Samvatsara`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "SaptamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SaptamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SaptamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Saptamsha D7 sign at the specified longitude. The method first resolves the ordinary zodiac sign at that longitude and then converts it to its D7 form.\n\n**Signature:** `SaptamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "SaptamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SaptamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SaptamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Saptamsha D7 equivalent. This is the main signconversion helper used for D7 chart calculations.\n\n**Signature:** `SaptamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "SarvashtakavargaChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SarvashtakavargaChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SarvashtakavargaChart"
              ]
            },
            "description": "When the benefic points contributed by each planet in Bhinnashtakavargas different signs are added we get a Sarvashtakavarga. A total of 337 benefic points are contributed by the seven planets to various houses in relation to seven planets and the lagna.\n\n**Signature:** `SarvashtakavargaChart(TimebirthTime)`  \n**Returns:** `Sarvashtakavarga`\n\n**Parameters**\n- `birthTime` (`Time`):"
          },
          "response": []
        },
        {
          "name": "SarvashtakavargaLongevityDetailed",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SarvashtakavargaLongevityDetailed",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SarvashtakavargaLongevityDetailed"
              ]
            },
            "description": "Returns a Sarvashtakavargabased detailed longevity result using the method tied to Sarvashtakavarga Sodya Pinda. This is the more detailed wrapper around the Sarvashtakavarga longevity calculation path.\n\n**Signature:** `SarvashtakavargaLongevityDetailed(TimebirthTime)`  \n**Returns:** `LongevityResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "SarvashtakavargaReductions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SarvashtakavargaReductions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SarvashtakavargaReductions"
              ]
            },
            "description": "Returns the Sarvashtakavarga reduction result after applying the Mandala Sodhana reduction pipeline. This is a higherlevel reduction across the combined Sarvashtakavarga figures rather than a singleplanet Bhinnashtakavarga result.\n\n**Signature:** `SarvashtakavargaReductions(TimebirthTime)`  \n**Returns:** `SarvashtakavargaReductionResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "SarvashtakavargaSodyaPinda",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SarvashtakavargaSodyaPinda",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SarvashtakavargaSodyaPinda"
              ]
            },
            "description": "Calculates Sodya Pinda from the reduced Sarvashtakavarga figures.\n\n**Signature:** `SarvashtakavargaSodyaPinda(TimebirthTime)`  \n**Returns:** `SodyaPindaResult`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "SarvatobhadraChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SarvatobhadraChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SarvatobhadraChakra"
              ]
            },
            "description": "Generates Sarvatobhadra Chakra. Sarvatobhadra Chakra is a 9x9 astrological grid used for Nakshatra Rasi and transit Vedha analysis. Contains Nakshatra positions Rasi positions Chakra coordinates Based on Jagannatha Hora implementation.\n\n**Signature:** `SarvatobhadraChakra(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "SearchEvents",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"AtTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"EventTagList\": [\n    \"PD1\",\n    \"PD2\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SearchEvents",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SearchEvents"
              ]
            },
            "description": "Searches for all matching events that are active at a single moment in time. This is the snapshot form of event discovery it answers what is happening right now.\n\n**Signature:** `SearchEvents(TimebirthTime,TimeatTime,List<EventTag>eventTagList)`  \n**Returns:** `List<Event>`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time used to anchor all event calculations.\n- `atTime` (`Time`): The exact moment to inspect.\n- `eventTagList` (`List<EventTag>`): The categories of events to include in the search."
          },
          "response": []
        },
        {
          "name": "SearchSourceText",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Query\": \"planet strength\",\n  \"TopK\": 5,\n  \"ContextSize\": 600\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SearchSourceText",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SearchSourceText"
              ]
            },
            "description": "Naturallanguage semantic search over the classical Vedic astrology sourcetext knowledge base e.g. Hindu Predictive Astrology BPHS. Returns topK most relevant passages with sourceName pageNumber chunkIndex text and similarity score. Powered by the same DashScope embeddings Cosmos DB vector index used by ContextBasedAstrologyDatas RAG enrichment step.\n\n**Signature:** `SearchSourceText(stringquery,inttopK,stringsourceName,intcontextSize)`  \n**Returns:** `Task<JArray>`\n\n**Parameters**\n- `query` (`String`): PlainEnglish question or topic e.g. effects of Saturn in 7th house.\n- `topK` (`Int32`): Max passages to return default 5 capped at 20.\n- `sourceName` (`String`): Optional source text to filter by e.g. BrihatParasharaHoraShastra. If nullempty searches all sources.\n- `contextSize` (`Int32`): Characters of surrounding text to include before and after each matched passage default 600 max 2000."
          },
          "response": []
        },
        {
          "name": "ShashtyamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShashtyamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShashtyamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Shashtyamsha D60 sign at the specified longitude.\n\n**Signature:** `ShashtyamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The ecliptic longitude to evaluate."
          },
          "response": []
        },
        {
          "name": "ShashtyamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShashtyamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShashtyamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Shashtyamsha D60 equivalent. This is the main signconversion helper used for D60 chart calculations.\n\n**Signature:** `ShashtyamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The input Rasi sign with its degree position."
          },
          "response": []
        },
        {
          "name": "ShodashamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShodashamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShodashamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Shodashamsha D16 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then converts it into the D16 sign.\n\n**Signature:** `ShodashamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "ShodashamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShodashamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShodashamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Shodashamsha D16 equivalent. This is the main signconversion helper used for D16 chart calculations.\n\n**Signature:** `ShodashamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "ShoolaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShoolaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShoolaChakra"
              ]
            },
            "description": "Compatibility entry point for the Shoola rasi dasa recovered at FUN_00407920. It is unrelated to weekday travel directions.\n\n**Signature:** `ShoolaChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "ShubKartariHouses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShubKartariHouses",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShubKartariHouses"
              ]
            },
            "description": "Finds houses in Shubha Kartari Yoga meaning houses hemmed between benefic planets. For each house the method checks the adjacent 2nd and 12th houses classifies the planets found there and returns the house when benefics are present and malefics are absent.\n\n**Signature:** `ShubKartariHouses(Timetime)`  \n**Returns:** `List<HouseName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "ShubKartariPlanets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ShubKartariPlanets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ShubKartariPlanets"
              ]
            },
            "description": "Finds planets in Shubha Kartari Yoga meaning planets hemmed between benefic influences. For each planet the method finds the planets signbased house checks the 2nd and 12th houses from that planet classifies the planets in those surrounding houses returns the planet when benefics are present and no malefics are present.\n\n**Signature:** `ShubKartariPlanets(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SignCountedFromInputSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputSign\": \"Aries\",\n  \"CountToNextSign\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignCountedFromInputSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignCountedFromInputSign"
              ]
            },
            "description": "Counts forward from a starting zodiac sign and returns the sign reached after the requested count. For example this can answer questions like Which sign is the 4th from Cancer The starting sign is counted as 1.\n\n**Signature:** `SignCountedFromInputSign(ZodiacNameinputSign,intcountToNextSign)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `inputSign` (`ZodiacName`): The sign to count from.\n- `countToNextSign` (`Int32`): The inclusive count to advance."
          },
          "response": []
        },
        {
          "name": "SignCountedFromLagnaSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"CountToNextSign\": 1,\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignCountedFromLagnaSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignCountedFromLagnaSign"
              ]
            },
            "description": "Counts forward from the Lagna Ascendant sign and returns the sign reached after the requested count. This is a convenience wrapper around SignCountedFromInputSign....\n\n**Signature:** `SignCountedFromLagnaSign(intcountToNextSign,TimeinputTime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `countToNextSign` (`Int32`): The inclusive count to advance.\n- `inputTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SignCountedFromPlanetSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"CountToNextSign\": 1,\n  \"StartPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignCountedFromPlanetSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignCountedFromPlanetSign"
              ]
            },
            "description": "Counts forward from the zodiac sign occupied by a planet and returns the sign reached after the requested count. For example this can answer questions like Which sign is the 4th from the Moon\n\n**Signature:** `SignCountedFromPlanetSign(intcountToNextSign,PlanetNamestartPlanet,TimeinputTime)`  \n**Returns:** `ZodiacName`\n\n**Parameters**\n- `countToNextSign` (`Int32`): The inclusive count to advance.\n- `startPlanet` (`PlanetName`): The planet whose current sign is used as the starting point.\n- `inputTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SignDistanceFromPlanetToPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"StartPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"EndPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignDistanceFromPlanetToPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignDistanceFromPlanetToPlanet"
              ]
            },
            "description": "Counts the zodiacsign distance from one planet to another. The method gets the Rasi sign of the starting planet gets the Rasi sign of the ending planet counts inclusively from the starting sign to the ending sign.\n\n**Signature:** `SignDistanceFromPlanetToPlanet(PlanetNamestartPlanet,PlanetNameendPlanet,Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `startPlanet` (`PlanetName`): The planet used as the starting reference.\n- `endPlanet` (`PlanetName`): The planet whose sign is counted toward.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SignProperties",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputSign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignProperties",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignProperties"
              ]
            },
            "description": "Returns the full cSignPropertiesc object for a zodiac sign. This is a simple convenience wrapper that constructs and returns the signproperties model for the requested sign.\n\n**Signature:** `SignProperties(ZodiacNameinputSign)`  \n**Returns:** `SignProperties`\n\n**Parameters**\n- `inputSign` (`ZodiacName`): The zodiac sign whose properties should be returned."
          },
          "response": []
        },
        {
          "name": "SignsPlanetIsAspecting",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignsPlanetIsAspecting",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignsPlanetIsAspecting"
              ]
            },
            "description": "Returns the zodiac signs aspected by a planet at the given time. The method begins from the planets current sign and applies the supported Vedic aspect rules all planets aspect the 7th sign from themselves Saturn additionally aspects the 3rd and 10th signs Jupiter additionally aspects the 5th and 9th signs Mars additionally aspects the 4th and 8th signs Maandi and Gulika additionally aspect the 2nd 7th and 12th signs from their sign of occupation.\n\n**Signature:** `SignsPlanetIsAspecting(PlanetNameplanetName,Timetime)`  \n**Returns:** `List<ZodiacName>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet or Upagraha whose aspects should be calculated.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SignToNakshatra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aries\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SignToNakshatra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SignToNakshatra"
              ]
            },
            "description": "Returns the Nakshatra that begins at the starting degree of a zodiac sign. The method converts the signs starting longitude into a constellation.\n\n**Signature:** `SignToNakshatra(ZodiacNamesign)`  \n**Returns:** `ConstellationName`\n\n**Parameters**\n- `sign` (`ZodiacName`): The zodiac sign to convert."
          },
          "response": []
        },
        {
          "name": "SkyChart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SkyChart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SkyChart"
              ]
            },
            "description": "Generates a bsky chartb for the given time and returns it as an SVG string. This is intended for direct display in a client application such as embedding the returned SVG as an image source or rendered chart asset.\n\n**Signature:** `SkyChart(Timetime)`  \n**Returns:** `Task<String>`\n\n**Parameters**\n- `time` (`Time`): The time and location for which the sky chart should be generated."
          },
          "response": []
        },
        {
          "name": "SodyaAshtakavarga",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SodyaAshtakavarga",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SodyaAshtakavarga"
              ]
            },
            "description": "Calculates Sodhya Ashtakavarga. Sodhya Ashtakavarga is the purified Sarvashtakavarga after applying 1. Trikona Shodhana 2. Ekadhipatya Shodhana The result represents the final usable bindu strength of each house. Maximum theoretical value 56 bindus Based on Jagannatha Hora Ashtakavarga calculation.\n\n**Signature:** `SodyaAshtakavarga(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "SpecialDasaApplicability",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SpecialDasaApplicability",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SpecialDasaApplicability"
              ]
            },
            "description": "Checks which of Parasaras 9 special condition conditional Udu Dasa systems apply to a birth chart Ashtottari Shodasottari Dwadasottari Panchottari Satabdika Chaturasiti Sama Dwisaptati Sama Shastihayani and Shattrimsa Sama. Each system has a strict applicability criteria given in BPHS ch 48 e.g. Ashtottari needs Rahu in quadranttrine from the Lagna lord. Returns every applicable system with its reason plus the single winning system as per Parasaras order of precedence. Note that these special dasas supplement the universally applicable Vimshottari Dasa they do not replace it they reveal the special purpose of the birth and time the major turning points that lead to its achievement.\n\n**Signature:** `SpecialDasaApplicability(TimebirthTime)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person."
          },
          "response": []
        },
        {
          "name": "SpecialDasaAtTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"DasaSystem\": \"Vimshottari\",\n  \"Levels\": 3\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SpecialDasaAtTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SpecialDasaAtTime"
              ]
            },
            "description": "Returns the planetary period lords PD1 Maha Dasa PD2 subperiod PD3 subsubperiod... operating at a specific moment under one of Parasaras special condition Udu Dasa systems Ashtottari Shodasottari Dwadasottari Panchottari Satabdika Chaturasiti Sama Dwisaptati Sama Shastihayani Shattrimsa Sama. Use SpecialDasaApplicability first to know which system fits the chart. These conditional dasas supplement Vimshottari Dasa for timing the special purpose of the birth.\n\n**Signature:** `SpecialDasaAtTime(TimebirthTime,TimecheckTime,DasaTypedasaSystem,intlevels)`  \n**Returns:** `JObject`\n\n**Parameters**\n- `birthTime` (`Time`): Birth time location of the person.\n- `checkTime` (`Time`): The moment to evaluate the running Dasa periods for.\n- `dasaSystem` (`DasaType`): Which special dasa system to calculate with.\n- `levels` (`Int32`): How many nested Dasa levels to return default 3 max 8."
          },
          "response": []
        },
        {
          "name": "SpouseDeathByJupiter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"T\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SpouseDeathByJupiter",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SpouseDeathByJupiter"
              ]
            },
            "description": "Returns the Jupiterbased Ashtakavarga transit prediction related to the spouses death timing.\n\n**Signature:** `SpouseDeathByJupiter(Timet)`  \n**Returns:** `TransitPredictionResult`\n\n**Parameters**\n- `t` (`Time`):"
          },
          "response": []
        },
        {
          "name": "SubhaGrahasList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SubhaGrahasList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SubhaGrahasList"
              ]
            },
            "description": "Returns the list of Subha Grahas used for benefic strength and aspect calculations. The method always includes Jupiter Venus It conditionally adds Moon when the Moon is benefic Mercury when Mercury is not afflicted by malefics.\n\n**Signature:** `SubhaGrahasList(Timetime)`  \n**Returns:** `List<PlanetName>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SudarsanaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SudarsanaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SudarsanaChakra"
              ]
            },
            "description": "Compatibility entry point for JHoras Sudarsana Chakra Dasa. FUN_004133E0 is a 12by12 oneyear rasi dasa not three rotated copies of the natal chart.\n\n**Signature:** `SudarsanaChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "SunAndMoonWellPlacedAndAspected",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SunAndMoonWellPlacedAndAspected",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SunAndMoonWellPlacedAndAspected"
              ]
            },
            "description": "Checks whether both the Sun and Moon are sufficiently strong and receive netbenefic aspect influence. The method requires both conditions Sun and Moon must each have positive Drik Bala. Sun and Moon must meet minimum Shadbala Pinda thresholds Sun must be at least 5 rupas or 300 shashtiamsas Moon must be at least 6 rupas or 360 shashtiamsas.\n\n**Signature:** `SunAndMoonWellPlacedAndAspected(TimebirthTime)`  \n**Returns:** `Boolean`\n\n**Parameters**\n- `birthTime` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SunMoonConjunctionAngle",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Ccc\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SunMoonConjunctionAngle",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SunMoonConjunctionAngle"
              ]
            },
            "description": "Calculates the bangular distance between the Moon and the Sunb at a given time. The method 1. gets the Nirayana longitudes of the Sun and Moon 2. computes the difference 3. normalizes the result to the c0360c range. This helper is used mainly for New Moon detection and lunarmonth calculations.\n\n**Signature:** `SunMoonConjunctionAngle(Timeccc)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `ccc` (`Time`): The time for which the SunMoon separation should be measured."
          },
          "response": []
        },
        {
          "name": "SunriseTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SunriseTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SunriseTime"
              ]
            },
            "description": "Calculates the sunrise time for the date and location of the supplied Time. The method checks the cache prepares Swiss Ephemeris risetransit parameters for the Sun starts the search from local midnight calculates sunrise using the configured geographic coordinates converts the Swiss Ephemeris Julian result back into the original standardtime offset returns the final Time.\n\n**Signature:** `SunriseTime(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): A time containing the date and location for the sunrise calculation."
          },
          "response": []
        },
        {
          "name": "SunsetTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SunsetTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SunsetTime"
              ]
            },
            "description": "Calculates the sunset time for the date and location of the supplied Time. The method follows the same Swiss Ephemeris risetransit pattern as SunriseTime... but requests the Suns setting time instead of rising time.\n\n**Signature:** `SunsetTime(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): A time containing the date and location for the sunset calculation."
          },
          "response": []
        },
        {
          "name": "SunSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SunSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SunSign"
              ]
            },
            "description": "Returns the zodiac sign occupied by the Sun at the given time. The method calculates the Suns Rasi sign and returns the full ZodiacSign including both sign name and degree within the sign.\n\n**Signature:** `SunSign(Timetime)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SuryaKalanalaChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SuryaKalanalaChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SuryaKalanalaChakra"
              ]
            },
            "description": "Builds JHoras natal Surya Kalanala 28star geometric chakra. The Suns 28star position is placed at the eastern corner and all bodies are located relative to it this is a chart not a synthetic meanmotion progression.\n\n**Signature:** `SuryaKalanalaChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "SwissEphemeris",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  },\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SwissEphemeris",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SwissEphemeris"
              ]
            },
            "description": "Returns the raw bSwiss Ephemeris calculation outputb for a single planet. This is an APIfacing wrapper around the lowerlevel Swiss Ephemeris call and exposes values such as longitude latitude distance speed components.\n\n**Signature:** `SwissEphemeris(PlanetNameplanetName,Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet to evaluate.\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "SwissEphemerisAll",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/SwissEphemerisAll",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "SwissEphemerisAll"
              ]
            },
            "description": "Returns raw bSwiss Ephemeris data for a wider planet setb including the outer planets and the nodes. The method prepares a mapping of Swiss Ephemeris planet IDs and collects the returned values into a dictionary keyed by display name.\n\n**Signature:** `SwissEphemerisAll(Timetime)`  \n**Returns:** `Dictionary<String, Object>`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "TajakaHarshaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajakaHarshaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajakaHarshaBala"
              ]
            },
            "description": "Calculates JHoras fourtest Harsha Bala for the annual solarreturn chart. Each satisfied test contributes five points for a 0..20 result. The annual wrapper delegates scoring to see crefPlanetHarshaBalaTime.\n\n**Signature:** `TajakaHarshaBala(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TajakaPanchaVargeeyaBala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajakaPanchaVargeeyaBala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajakaPanchaVargeeyaBala"
              ]
            },
            "description": "Calculates JHoras Pancha Vargeeya Bala for the annual solarreturn chart. The annual wrapper preserves Tajakaspecific result names and delegates the actual fivefold strength calculation to see crefPlanetPanchaVargeeyaBalaTime.\n\n**Signature:** `TajakaPanchaVargeeyaBala(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TajakaVarshaphala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajakaVarshaphala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajakaVarshaphala"
              ]
            },
            "description": "Calculates Tajaka Varshaphala. Tajaka Varshaphala is the annual solar return horoscope system. Calculates Solar return time Varsha Lagna Muntha Year Lord Based on Jagannatha Hora Varshaphala.\n\n**Signature:** `TajakaVarshaphala(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TajakaYogaList",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajakaYogaList",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajakaYogaList"
              ]
            },
            "description": "Finds applying Itthasala and separating Ishrafa Tajaka aspects in the annual solarreturn chart.\n\n**Signature:** `TajakaYogaList(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TajakaYogaListFromPlanetaryData",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetaryPositions\": [\n    {\n      \"Planet\": \"Sun\",\n      \"Longitude\": 10.25,\n      \"Speed\": 0.9856\n    },\n    {\n      \"Planet\": \"Moon\",\n      \"Longitude\": 72.5,\n      \"Speed\": 13.1764\n    },\n    {\n      \"Planet\": \"Mars\",\n      \"Longitude\": 101.75,\n      \"Speed\": 0.524\n    },\n    {\n      \"Planet\": \"Mercury\",\n      \"Longitude\": 130.1,\n      \"Speed\": 1.2\n    },\n    {\n      \"Planet\": \"Jupiter\",\n      \"Longitude\": 191.4,\n      \"Speed\": 0.0831\n    },\n    {\n      \"Planet\": \"Venus\",\n      \"Longitude\": 250.8,\n      \"Speed\": 1.18\n    },\n    {\n      \"Planet\": \"Saturn\",\n      \"Longitude\": 310.2,\n      \"Speed\": 0.0335\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajakaYogaListFromPlanetaryData",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajakaYogaListFromPlanetaryData"
              ]
            },
            "description": "Classifies Tajaka aspects from alreadycomputed planetary positions. The seven classical planets have individual deeptamsas of 15 12 8 7 9 7 and 9 degrees a pairs operative orb is their arithmetic mean. The recognized sign relationships are the five classical Tajaka aspects conjunction sextile square trine and opposition 11 311 410 59 and 77 respectively. Nodes are deliberately unsupported because the classical scheme assigns them no deeptamsa.\n\n**Signature:** `TajakaYogaListFromPlanetaryData(IEnumerable<TajakaPlanetPosition>planetaryPositions)`  \n**Returns:** `IReadOnlyList<TajakaYogaResult>`\n\n**Parameters**\n- `planetaryPositions` (`IEnumerable<TajakaPlanetPosition>`):"
          },
          "response": []
        },
        {
          "name": "TajikaDateForYear",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ScanYear\": 2026\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajikaDateForYear",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajikaDateForYear"
              ]
            },
            "description": "Calculates the Tajika annualreturn date and time for a given year using a traditional tablebased approach described in B. V. Ramans Varshaphala. The source comments explain that this method is based on a siderealyear duration of roughly 365 days 6 hours 9 minutes 12 seconds. The method caches the result and prepares lookup records for year offsets drawn from the referenced text.\n\n**Signature:** `TajikaDateForYear(TimebirthTime,intscanYear)`  \n**Returns:** `Time`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `scanYear` (`Int32`): The year for which the Tajika return should be calculated."
          },
          "response": []
        },
        {
          "name": "TajikaDateForYear2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"ScanYear\": 2026\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TajikaDateForYear2",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TajikaDateForYear2"
              ]
            },
            "description": "Calculates the exact Tajika date and time for a given year by scanning forward until the Sun returns to the same sign and nearly the same degree it held at birth. The method gets the Suns sign and degree at birth starts searching a few days before the birthday in the requested year scans forward in small time steps compares the Suns current sign and insign degree against the birth position stops when both values match within a small tolerance. This method reflects the core Tajika idea that the annual chart begins when the Sun returns to the same position it occupied at birth.\n\n**Signature:** `TajikaDateForYear2(TimebirthTime,intscanYear)`  \n**Returns:** `Time`\n\n**Parameters**\n- `birthTime` (`Time`): The natives birth time.\n- `scanYear` (`Int32`): The year for which the Tajika return should be calculated."
          },
          "response": []
        },
        {
          "name": "Tarabala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"Person\": {\n    \"PersonId\": \"postman-sample-person\",\n    \"Name\": \"Jane Doe\",\n    \"Notes\": \"Generated Postman sample\",\n    \"BirthTime\": {\n      \"StdTime\": \"14:20 16/10/1918 +05:30\",\n      \"Location\": {\n        \"Name\": \"Bangalore, India\",\n        \"Longitude\": 77.5946,\n        \"Latitude\": 12.9716\n      }\n    },\n    \"Gender\": \"Female\",\n    \"OwnerId\": \"101\",\n    \"LifeEventList\": []\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Tarabala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Tarabala"
              ]
            },
            "description": "Calculates Tarabala the birthstar strength used in personal Muhurtha. The method gets the Moon constellation number at the selected time gets the persons birth Moon constellation number counts from the birth constellation to the current constellation reduces the count into the standard 9fold Tara cycle returns the Tara number and cycle.\n\n**Signature:** `Tarabala(Timetime,Personperson)`  \n**Returns:** `Tarabala`\n\n**Parameters**\n- `time` (`Time`): The Muhurtha or event time to evaluate.\n- `person` (`Person`): The person whose birth constellation is used as the reference."
          },
          "response": []
        },
        {
          "name": "TimeOffsetToLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": \"05:30:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeOffsetToLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeOffsetToLongitude"
              ]
            },
            "description": "Converts a btime offsetb into its equivalent longitude. The method treats 1 hour as 15 degrees and returns the result as an cAnglec.\n\n**Signature:** `TimeOffsetToLongitude(TimeSpantime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`TimeSpan`): The offset to convert."
          },
          "response": []
        },
        {
          "name": "TimeSunEnteredCurrentSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeSunEnteredCurrentSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeSunEnteredCurrentSign"
              ]
            },
            "description": "Finds the approximate time when the Sun entered its current zodiac sign. The method starts from the supplied time identifies the Suns current sign scans backward in time reduces the scan step whenever it overshoots into the previous sign stops when the Sun is very close to the beginning of the current sign or when the accuracy limit is reached.\n\n**Signature:** `TimeSunEnteredCurrentSign(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): A time when the Sun is already in the sign being examined."
          },
          "response": []
        },
        {
          "name": "TimeSunLeavesCurrentSign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeSunLeavesCurrentSign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeSunLeavesCurrentSign"
              ]
            },
            "description": "Finds the approximate time when the Sun will leave its current zodiac sign. The method starts from the supplied time identifies the Suns current sign scans forward in time reduces the scan step whenever it overshoots into the next sign stops when the Sun is very close to the end of the current sign or when the accuracy limit is reached.\n\n**Signature:** `TimeSunLeavesCurrentSign(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): A time when the Sun is already in the sign being examined."
          },
          "response": []
        },
        {
          "name": "TimeToJulianDay",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeToJulianDay",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeToJulianDay"
              ]
            },
            "description": "Converts a time value into a bJulian Day number in Universal Time UTb using Swiss Ephemeris. The method 1. gets the local mean time from the cTimec object 2. converts it to UTC 3. passes the UTC date and fractional hour into Swiss Ephemeris 4. returns the resulting Julian Day value. This helper is a direct localized conversion method used when a Julian Day number is needed for astronomical calculations.\n\n**Signature:** `TimeToJulianDay(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "TimeToJulianEphemerisTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeToJulianEphemerisTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeToJulianEphemerisTime"
              ]
            },
            "description": "Converts a cTimec value into bJulian Day in Ephemeris Time ET TTb and caches the result. The method 1. converts the input time to UTC 2. calls the Swiss Ephemeris cswe_utc_to_jdc function 3. returns cresults0c which is Julian Day in ET TT.\n\n**Signature:** `TimeToJulianEphemerisTime(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "TimeToJulianUniversalTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TimeToJulianUniversalTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TimeToJulianUniversalTime"
              ]
            },
            "description": "Converts a cTimec value into bJulian Day in Universal Time UTb and caches the result. The method follows the same Swiss Ephemeris conversion path as cTimeToJulianEphemerisTime...c but returns cresults1c the UT component instead of ET.\n\n**Signature:** `TimeToJulianUniversalTime(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to convert."
          },
          "response": []
        },
        {
          "name": "TithiAshtottariDasa",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TithiAshtottariDasa",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TithiAshtottariDasa"
              ]
            },
            "description": "Calculates Tithi Ashtottari Dasa. Tithi Ashtottari is an Ashtottari Dasa system whose starting point is the birth Tithi instead of Nakshatra. Cycle Sun 6 Moon 15 Mars 8 Mercury 17 Saturn 10 Jupiter 19 Venus 21 Rahu 12 Total 108 years Based on Jagannatha Hora implementation.\n\n**Signature:** `TithiAshtottariDasa(Timetime)`  \n**Returns:** `List<Object>`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TithiBalance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TithiBalance",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TithiBalance"
              ]
            },
            "description": "Returns the percentage of the current Tithi still remaining. A Tithi spans 12 degrees of forward angular separation between the Moon and Sun. Values 100 Tithi has just begun 0 Tithi has reached its end\n\n**Signature:** `TithiBalance(Timetime)`  \n**Returns:** `Double`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "TithiNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TithiNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TithiNumber"
              ]
            },
            "description": "Returns the current Tithi number in the complete lunarmonth sequence. Values 115 Shukla Paksha 1630 Krishna Paksha Reuses VedAstros existing LunarDay calculation.\n\n**Signature:** `TithiNumber(Timetime)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `time` (`Time`): The time to evaluate."
          },
          "response": []
        },
        {
          "name": "TithiPravesha",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TithiPravesha",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TithiPravesha"
              ]
            },
            "description": "Calculates Tithi Pravesha. Tithi Pravesha is the lunar annual return based on the SunMoon angular relationship. It occurs when the current SunMoon angle returns to the natal Tithi position. Used for Annual lunar predictions Tithi based Varshaphala Muhurta analysis Based on Jagannatha Hora Tithi Pravesha.\n\n**Signature:** `TithiPravesha(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TransitHouseFromLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TransitPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TransitHouseFromLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TransitHouseFromLagna"
              ]
            },
            "description": "Calculates which house a transiting planet occupies when counted from the natal Lagna Ascendant. The method gets the natal Lagna sign gets the transiting planets current Rasi sign at checkTime counts from the natal Lagna sign to the transit sign returns the result as a HouseName.\n\n**Signature:** `TransitHouseFromLagna(PlanetNametransitPlanet,TimecheckTime,TimebirthTime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `transitPlanet` (`PlanetName`): The transiting planet to evaluate.\n- `checkTime` (`Time`): The time of transit.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "TransitHouseFromMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TransitPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TransitHouseFromMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TransitHouseFromMoon"
              ]
            },
            "description": "Calculates which house a transiting planet occupies when counted from the natal Moon sign Janma Rashi. This is one of the core referenceframe helpers for transit interpretation.\n\n**Signature:** `TransitHouseFromMoon(PlanetNametransitPlanet,TimecheckTime,TimebirthTime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `transitPlanet` (`PlanetName`): The transiting planet to evaluate.\n- `checkTime` (`Time`): The time of transit.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "TransitHouseFromNavamsaLagna",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TransitPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TransitHouseFromNavamsaLagna",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TransitHouseFromNavamsaLagna"
              ]
            },
            "description": "Calculates which house a transiting planet occupies when counted from the natal Navamsha Lagna. The method gets the Navamsha sign of House 1 at birth gets the transiting planets current Rasi sign counts from the natal Navamsha Lagna sign to the transit sign returns the result as a HouseName.\n\n**Signature:** `TransitHouseFromNavamsaLagna(PlanetNametransitPlanet,TimecheckTime,TimebirthTime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `transitPlanet` (`PlanetName`): The transiting planet to evaluate.\n- `checkTime` (`Time`): The time of transit.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "TransitHouseFromNavamsaMoon",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"TransitPlanet\": {\n    \"Name\": \"Sun\"\n  },\n  \"CheckTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TransitHouseFromNavamsaMoon",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TransitHouseFromNavamsaMoon"
              ]
            },
            "description": "Calculates which house a transiting planet occupies when counted from the natal Navamsha Moon sign. The method uses the Moons Navamsha sign at birth as the reference point rather than the standard Rasi Moon sign.\n\n**Signature:** `TransitHouseFromNavamsaMoon(PlanetNametransitPlanet,TimecheckTime,TimebirthTime)`  \n**Returns:** `HouseName`\n\n**Parameters**\n- `transitPlanet` (`PlanetName`): The transiting planet to evaluate.\n- `checkTime` (`Time`): The time of transit.\n- `birthTime` (`Time`): The natives birth time."
          },
          "response": []
        },
        {
          "name": "TrimshamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TrimshamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TrimshamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Trimshamsha D30 sign at the specified longitude. The method first resolves the ordinary zodiac sign at the given longitude and then applies the Trimshamsha conversion rules.\n\n**Signature:** `TrimshamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "TrimshamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TrimshamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TrimshamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Trimshamsha D30 equivalent using the special Trimshamsha division rules. The method reads the sign and its degree position determines the current Trimshamsha segment applies different rulership rules for odd and even signs returns the resulting sign with a divisional degree value. This is a custom D30 implementation and is more detailed than the standard tabledriven divisional helpers.\n\n**Signature:** `TrimshamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "TripatakiChakra",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TripatakiChakra",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TripatakiChakra"
              ]
            },
            "description": "Compatibility entry point for CTripatakiChakraViews actual twelvesign lattice and objectplacement logic FUN_00491150.\n\n**Signature:** `TripatakiChakra(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`):"
          },
          "response": []
        },
        {
          "name": "TrueSiderealSolarReturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TrueSiderealSolarReturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TrueSiderealSolarReturn"
              ]
            },
            "description": "Calculates true sidereal solar return. Finds the exact moment when the sidereal Sun returns to the natal sidereal Sun longitude. Used for Vedic Solar Return Tajaka Varshaphala\n\n**Signature:** `TrueSiderealSolarReturn(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "TrueTropicalSolarReturn",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/TrueTropicalSolarReturn",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "TrueTropicalSolarReturn"
              ]
            },
            "description": "Calculates true tropical solar return. Finds the exact moment when the tropical Sun returns to the natal tropical Sun longitude. Used for Western Solar Return Tropical annual charts\n\n**Signature:** `TrueTropicalSolarReturn(Timetime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `time` (`Time`): Birth chart time."
          },
          "response": []
        },
        {
          "name": "UpagrahaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"RelatedPlanet\": \"Sun\",\n  \"UpagrahaPart\": \"Dhuma\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/UpagrahaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "UpagrahaLongitude"
              ]
            },
            "description": "Calculates the longitude of a bnonsolar Upagrahab by finding the Lagna rising at a selected planetary part of the day or night. The method works as follows 1. determines which numbered part belongs to the related planet 2. checks whether the birth or event time is during the day or night 3. divides the relevant daylight or nighttime span into b8 equal partsb 4. calculates the start and middle of the requested part 5. selects either the bbeginningb or bmiddleb of that part 6. calculates the house longitudes for that selected moment 7. returns the longitude of bHouse 1 Lagnab as the Upagraha longitude. This is the central calculation helper behind Kaala Mrityu Arthaprahaara Yamaghantaka Gulika and Maandi.\n\n**Signature:** `UpagrahaLongitude(Timetime,PlanetNameEnumrelatedPlanet,stringupagrahaPart)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time.\n- `relatedPlanet` (`PlanetNameEnum`): The planetary ruler used to identify the correct part.\n- `upagrahaPart` (`String`): Which point inside the part should be used. The current code expects either cbeginc or cmiddlec."
          },
          "response": []
        },
        {
          "name": "UpagrahaPartNumber",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  },\n  \"InputPlanet\": \"Sun\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/UpagrahaPartNumber",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "UpagrahaPartNumber"
              ]
            },
            "description": "Returns the numbered bUpagraha planetary partb for a planet at a given time. The method 1. checks whether the time falls in a day birth or night birth context 2. selects the matching weekday rule table 3. returns the part number from c1c to c8c for the requested planet.\n\n**Signature:** `UpagrahaPartNumber(TimeinputTime,PlanetNameEnuminputPlanet)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `inputTime` (`Time`): The time whose daynight context and weekday should be used.\n- `inputPlanet` (`PlanetNameEnum`): The planetary ruler whose part number is required."
          },
          "response": []
        },
        {
          "name": "UpaketuLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/UpaketuLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "UpaketuLongitude"
              ]
            },
            "description": "Calculates the longitude of bUpaketub from Indrachaapa. The method 1. gets Indrachaapas longitude 2. adds b1640b 3. normalizes the result.\n\n**Signature:** `UpaketuLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "VarjyaKala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/VarjyaKala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "VarjyaKala"
              ]
            },
            "description": "Calculates Varjya Kala also called Thyajya for the Moons currently occupied Nakshatra. Moola has two separate Varjya periods. Every other Nakshatra has one Varjya period.\n\n**Signature:** `VarjyaKala(Timetime)`  \n**Returns:** `List<TimeRange>`\n\n**Parameters**\n- `time` (`Time`): The chart time and location."
          },
          "response": []
        },
        {
          "name": "Vedhanka",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Planet\": {\n    \"Name\": \"Sun\"\n  },\n  \"House\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/Vedhanka",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "Vedhanka"
              ]
            },
            "description": "Returns the Vedhanka or obstruction point for a given planet and Gochara house. The result is taken from a fixed rule table and is used by the Gochara subsystem to decide whether a transit is blocked by Vedha.\n\n**Signature:** `Vedhanka(PlanetNameplanet,inthouse)`  \n**Returns:** `Int32`\n\n**Parameters**\n- `planet` (`PlanetName`): The planet whose transit rule table should be used.\n- `house` (`Int32`): The Gochara house being evaluated."
          },
          "response": []
        },
        {
          "name": "VedicDayStartTime",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"InputTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/VedicDayStartTime",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "VedicDayStartTime"
              ]
            },
            "description": "Returns the start time of the Vedic day containing the supplied time. A Vedic day begins at sunrise not at midnight. The method calculates sunrise for the supplied date returns that sunrise when the input time is after sunrise otherwise moves back roughly one day and returns the previous sunrise.\n\n**Signature:** `VedicDayStartTime(TimeinputTime)`  \n**Returns:** `Time`\n\n**Parameters**\n- `inputTime` (`Time`): The time whose Vedic day should be identified."
          },
          "response": []
        },
        {
          "name": "VimshamshaSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/VimshamshaSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "VimshamshaSignAtLongitude"
              ]
            },
            "description": "Returns the Vimshamsha D20 sign at the specified longitude. The method resolves the ordinary zodiac sign at the longitude and then converts it into the D20 sign.\n\n**Signature:** `VimshamshaSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to inspect."
          },
          "response": []
        },
        {
          "name": "VimshamshaSignName",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"ZodiacSign\": {\n    \"Name\": \"Aries\",\n    \"DegreesIn\": {\n      \"TotalDegrees\": \"15\"\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/VimshamshaSignName",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "VimshamshaSignName"
              ]
            },
            "description": "Converts a zodiac sign into its Vimshamsha D20 equivalent. This is the main signconversion helper used for D20 chart calculations.\n\n**Signature:** `VimshamshaSignName(ZodiacSignzodiacSign)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `zodiacSign` (`ZodiacSign`): The source zodiac sign."
          },
          "response": []
        },
        {
          "name": "VyatipaataLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/VyatipaataLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "VyatipaataLongitude"
              ]
            },
            "description": "Calculates the longitude of bVyatipaatab from Dhuma. The method 1. gets Dhumas longitude 2. subtracts it from b360b 3. normalizes the result.\n\n**Signature:** `VyatipaataLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "YamaGhantakaKala",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/YamaGhantakaKala",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "YamaGhantakaKala"
              ]
            },
            "description": "Calculates the Yama Ghantaka Kala interval for the Vedic day containing the supplied time. Daylight from sunrise to sunset is divided into eight equal parts.\n\n**Signature:** `YamaGhantakaKala(Timetime)`  \n**Returns:** `TimeRange`\n\n**Parameters**\n- `time` (`Time`): The time and location to evaluate."
          },
          "response": []
        },
        {
          "name": "YamaghantakaLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/YamaghantakaLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "YamaghantakaLongitude"
              ]
            },
            "description": "Calculates the longitude of bYamaghantakab the Upagraha associated with the bmiddle of Jupiters planetary partb. The method delegates to cUpagrahaLongitude...c and uses Jupiter as the related planet.\n\n**Signature:** `YamaghantakaLongitude(Timetime)`  \n**Returns:** `Angle`\n\n**Parameters**\n- `time` (`Time`): The chart time."
          },
          "response": []
        },
        {
          "name": "YearAndMonthLord",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Time\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/YearAndMonthLord",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "YearAndMonthLord"
              ]
            },
            "description": "Calculates the lords of the year and month for the supplied time. The method uses the day interval from the epoch and derives the year and month lord according to the counting logic used by the Kala Bala calculations.\n\n**Signature:** `YearAndMonthLord(Timetime)`  \n**Returns:** `Object`\n\n**Parameters**\n- `time` (`Time`): The time whose year and month lords should be calculated."
          },
          "response": []
        },
        {
          "name": "YoniKutaAnimal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"BirthTime\": {\n    \"StdTime\": \"14:20 16/10/1918 +05:30\",\n    \"Location\": {\n      \"Name\": \"Bangalore, India\",\n      \"Longitude\": 77.5946,\n      \"Latitude\": 12.9716\n    }\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/YoniKutaAnimal",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "YoniKutaAnimal"
              ]
            },
            "description": "Returns the bYoni Kuta animalb for a birth chart as plain text. The method 1. gets the Moons constellation at birth 2. converts that constellation into its Yoni animal mapping 3. returns the animal information as a string.\n\n**Signature:** `YoniKutaAnimal(TimebirthTime)`  \n**Returns:** `String`\n\n**Parameters**\n- `birthTime` (`Time`): The birth time to evaluate."
          },
          "response": []
        },
        {
          "name": "YoniKutaAnimalFromConstellation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Sign\": \"Aswini\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/YoniKutaAnimalFromConstellation",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "YoniKutaAnimalFromConstellation"
              ]
            },
            "description": "Returns the bYoni Kuta animal and sex mappingb for a specific constellation. The method uses a fixed lookup table and returns the matching cConstellationAnimalc object.\n\n**Signature:** `YoniKutaAnimalFromConstellation(ConstellationNamesign)`  \n**Returns:** `ConstellationAnimal`\n\n**Parameters**\n- `sign` (`ConstellationName`): The constellation to map."
          },
          "response": []
        },
        {
          "name": "ZodiacSignAtLongitude",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"Longitude\": {\n    \"TotalDegrees\": \"180\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ZodiacSignAtLongitude",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ZodiacSignAtLongitude"
              ]
            },
            "description": "Returns the zodiac sign and degreeinsign for a given longitude. The method normalizes the longitude divides the zodiac circle into 30degree signs determines the sign number calculates the degree position inside that sign returns a ZodiacSign.\n\n**Signature:** `ZodiacSignAtLongitude(Anglelongitude)`  \n**Returns:** `ZodiacSign`\n\n**Parameters**\n- `longitude` (`Angle`): The longitude to convert."
          },
          "response": []
        },
        {
          "name": "ZodiacSignsOwnedByPlanet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"Ayanamsa\": \"{{ayanamsa}}\",\n  \"PlanetName\": {\n    \"Name\": \"Sun\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/Calculate/ZodiacSignsOwnedByPlanet",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "Calculate",
                "ZodiacSignsOwnedByPlanet"
              ]
            },
            "description": "Returns all zodiac signs ruled by a planet. The method maps the standard planetary rulers to their signs and also includes mappings for supported Upagrahas where defined in the source.\n\n**Signature:** `ZodiacSignsOwnedByPlanet(PlanetNameplanetName)`  \n**Returns:** `List<ZodiacName>`\n\n**Parameters**\n- `planetName` (`PlanetName`): The planet whose owned signs should be returned."
          },
          "response": []
        }
      ]
    }
  ]
}
