Skip to content
POST/api/astro/kp-chart/1 credit

KP (Krishnamurti) chart

A Krishnamurti Paddhati chart as named parts rather than one opaque blob. KP is its own tradition with a large following, and until now the whole chart came back only if you already knew five key names to ask for. This returns the ascendant, the twelve house cusps with their start, middle and end, the sign on each cusp, every planet's longitude, and which house each planet falls in. KP uses Placidus cusps on a sidereal zodiac, which is why its house placements differ from /api/astro/chart/ for the same birth. That is the system working as intended, not a disagreement between the two endpoints.

https://yogataraapi.prahlad.app/api/astro/kp-chart/
Test Request

Authentication

Send your key in the X-API-Key header. Keys are server-side credentials — never put one in browser JavaScript or a mobile app.

X-API-Key: yt_live_a1b2c3d4_…
Content-Type: application/json

Request fields

FieldTypeRequiredNotes
date_timestring (date-time)required

The moment to calculate for, ISO 8601. ALWAYS include an offset or a trailing Z - a value with no zone is read as Asia/Kolkata (UTC+05:30), not UTC, and can return the previous day's result with a 200. '2026-09-01T06:00:00Z' and '2026-09-01 06:00:00' are different instants and give different answers.

latitudenumber (double)required

Latitude of the place, in decimal degrees. Positive is north, negative is south. Example: 26.9124 for Jaipur, 40.7128 for New York. Minutes and seconds are not accepted - convert first.

min -89.9 · max 89.9

longitudenumber (double)required

Longitude of the place, in decimal degrees. Positive is east, negative is west. Example: 75.7873 for Jaipur, -74.0060 for New York. Note the sign: a missing minus puts New York in China.

min -180 · max 180

timezone_as_floatnumber (double)required

UTC offset of the place, in hours, as a decimal. Example: 5.5 for India (UTC+05:30), -5 for New York in winter, 5.75 for Nepal. This is NOT validated against date_time - if the two disagree you get a successful response for the wrong moment, so derive both from the same source. Use the offset in force on that date, not today's: a summer birth in a country with daylight saving needs the summer offset.

min -12 · max 14

keysarrayoptional

Which calculations to return, as a list of names. See the key table for this endpoint; an unrecognised name rejects the whole request. One call costs one credit however many keys you ask for, so request everything you need at once rather than making several calls.

new_startintegeroptional

Cusp adjustment start, passed straight through to the engine.

notationstringoptional

Example request

curl -X POST https://yogataraapi.prahlad.app/api/astro/kp-chart/ \
  -H "X-API-Key: $OCCULT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_time":"1990-05-10T19:55:00+05:30","latitude":26.9124,"longitude":75.7873,"timezone_as_float":5.5,"notation":"degree","new_start":50}'

Response

{
  "data": {
    "system": "krishnamurti_paddhati",
    "ascendant": 216.7733892763535,
    "houses": [
      {
        "house": 1,
        "sign": "Sc",
        "start": 216.7733892763535,
        "middle": 231.85829168898027,
        "end": 246.94319410160705
      },
      {
        "house": 2,
        "sign": "Sg",
        "start": 246.94319410160705,
        "middle": 263.38929149306404,
        "end": 279.835388884521
      },
      {
        "house": 3,
        "sign": "Cp",
        "start": 279.835388884521,
        "middle": 296.8815490763593,
        "end": 313.92770926819765
      },
      {
        "house": 4,
        "sign": "Aq",
        "start": 313.92770926819765,
        "middle": 329.81303441531793,
        "end": 345.69835956243827
      },
      {
        "house": 5,
        "sign": "Pi",
        "start": 345.69835956243827,
        "middle": 179.37096263847687,
        "end": 13.043565714515491
      },
      {
        "house": 6,
        "sign": "Ar",
        "start": 13.043565714515491,
        "middle": 24.90847749543448,
        "end": 36.77338927635347
      },
      {
        "house": 7,
        "sign": "Ta",
        "start": 36.77338927635347,
        "middle": 51.858291688980245,
        "end": 66.94319410160702
      },
      {
        "house": 8,
        "sign": "Ge",
        "start": 66.94319410160702,
        "middle": 83.38929149306404,
        "end": 99.83538888452104
      },
      {
        "house": 9,
        "sign": "Cn",
        "start": 99.83538888452104,
        "middle": 116.88154907635936,
        "end": 133.92770926819765
      },
      {
        "house": 10,
        "sign": "Le",
        "start": 133.92770926819765,
        "middle": 149.813034415318,
        "end": 165.6983595624383
      },
      {
        "house": 11,
        "sign": "Vi",
        "start": 165.6983595624383,
        "middle": 179.3709626384769,
        "end": 193.04356571451547
      },
      {
        "house": 12,
        "sign": "Li",
        "start": 193.04356571451547,
        "middle": 204.90847749543448,
        "end": 216.7733892763535
      }
    ],
    "planet_longitudes": {
      "sun": 25.059,
      "moon": 213.651,
      "mercury": 14.844,
      "venus": 342.642,
      "mars": 320.082,
      "jupiter": 74.022,
      "saturn": 270.704,
      "uranus": 254.688,
      "neptune": 259.811,
      "pluto": 201.695,
      "northtruenode": 286.265,
      "northmeannode": 286.99,
      "southtruenode": 106.265,
      "southmeannode": 106.99
    },
    "planet_houses": {
      "sun": 6,
      "moon": 12,
      "mercury": 6,
      "venus": 4,
      "mars": 4,
      "jupiter": 8,
      "saturn": 2,
      "uranus": 2,
      "neptune": 2,
      "pluto": 12,
      "northtruenode": 3,
      "northmeannode": 3,
      "southtruenode": 9,
      "southmeannode": 9
    }
  },
  "status": 200,
  "is_error": false,
  "message": "successful"
}

Captured from a real call using the exact request above. Results sit under data.

Errors

Metering errors return { "error": "…", "message": "<code>", "is_error": true }. Show error to people and branch on message. See the error reference.