# generated: '2026-09-07' # method: derived # source: https://astrologyapi.com/developers/v1/postman-collection (8 first-party Postman collections) openapi: 3.1.0 info: title: AstrologyAPI JSON API version: 1.0.0 description: Vedic (Jyotish), Western, Human Design and AstroCartoGraphy calculation endpoints served from the AstrologyAPI JSON host. Every operation is a POST that takes birth or location details and returns computed astrological data. contact: name: AstrologyAPI Support email: support@astrologyapi.com url: https://astrologyapi.com/contact termsOfService: https://astrologyapi.com/legal/terms-service license: name: Proprietary url: https://astrologyapi.com/legal/terms-service externalDocs: description: AstrologyAPI developer hub url: https://astrologyapi.com/developers/v1 servers: - url: https://json.astrologyapi.com/v1 description: AstrologyAPI JSON API production host x-generated-from: postman-collection x-generated-note: Derived operation-by-operation from the eight Postman collections AstrologyAPI publishes at https://astrologyapi.com/developers/v1/postman-collection. Paths, HTTP methods, request fields and example values are taken verbatim from those collections. The 401 and 404 response envelopes were observed on live unauthenticated requests to the host on 2026-09-07. The provider publishes no response schemas, so 200 bodies are typed only as objects rather than invented. This is an API Evangelist derivation, not a contract published by AstrologyAPI. x-source-collections: - https://astrologyapi.com/postman/ACG.postman_collection.json - https://astrologyapi.com/postman/HD%20Collection.postman_collection.json - https://astrologyapi.com/postman/face_reading_API_collection_postman_collection.json - https://astrologyapi.com/postman/palm_API_collection_postman_collection.json - https://astrologyapi.com/postman/vedic_astrology_API_collection_postman_collection.json - https://astrologyapi.com/postman/vedic_astrology_pdf_API_collection_postman_collection.json - https://astrologyapi.com/postman/western_astrology_API_collection_postman_collection.json - https://astrologyapi.com/postman/western_astrology_pdf_API_collection_postman_collection.json tags: - name: Astrocartography - name: Human Design - name: Vedic Astrology - name: Western Astrology security: - basicAuth: [] - accessToken: [] paths: /acg/location/{category}: post: operationId: acg_location_category summary: Category Based Location tags: - Astrocartography description: 'Returns only the astrocartography lines for the planets tied to a chosen life category. **What it does** — Maps a life theme (love, career, money, etc.) to its associated planets and returns just those planets'' angle lines, so you can highlight the places on Earth that favor that area of life rather than drawing the whole map. Use it for themed "best places for love/career" map views. **Send** — Standard `birth_details` (see the collection overview), all nine required. Path parameter `category` — the life area to filter by, e.g. `LOVE`, `CAREER`, `MONEY`, `HEALTH`, `SPIRITUALITY`, `ADVENTURE`, `CREATIVITY`, `POWER`, `COMMUNICATION`. **Returns** — A JSON object with `meta`, the echoed `category`, and a `lines` array structured exactly like the Travel endpoint but limited to the category''s planets: each entry carries that planet''s `asc`/`dsc` rising/setting curves (a `points` list of `{latitude_deg, longitude_deg}`) and MC/IC meridian longitudes. Longitudes are east-positive. **Errors** — An unknown `category` or invalid/missing `birth_details` returns `400` with the offending field in `field_errors`; see the collection overview for the full error format.' parameters: - name: category in: path required: true schema: type: string example: LOVE description: 'Life category: LOVE, CAREER, MONEY, HEALTH, SPIRITUALITY, ADVENTURE, CREATIVITY, POWER, COMMUNICATION' requestBody: required: true content: application/json: schema: type: object properties: day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer second: type: integer tzone: type: number lat: type: number lon: type: number include_parans: type: boolean required: - day - month - year - hour - min - second - tzone - lat - lon - include_parans example: day: 22 month: 8 year: 1999 hour: 18 min: 50 second: 0 tzone: 5.5 lat: 19.0759837 lon: 72.8776559 include_parans: false responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Astrocartography documentation url: https://astrologyapi.com/products/astrocartography-api x-postman-collection: Astrocartography Collection /acg/planetary-line/{category}/{planet}: post: operationId: acg_planetary_line_category_planet summary: Planetary Line Report tags: - Astrocartography description: 'Returns the geometry of one single planet-and-angle astrocartography line. **What it does** — Computes just one line: a specific planet on a specific angle (its Midheaven, IC, Ascendant, or Descendant line). Use it when you want the coordinates of one line in isolation rather than a whole map. **Send** — Standard `birth_details` (see the collection overview), all nine required. Path parameter `category` — the line/angle type: `MC`, `IC`, `AC`, or `DC`. Path parameter `planet` — the body, `SUN` through `PLUTO`. **Returns** — A JSON object with `meta` (engine info, the latitude step, the east-positive longitude convention, and the reference location) and a `line` object. For MC/IC the line is a `meridian` with a single `longitude_deg`, the `object` (planet) name, and the `zenith_latitude_deg` where the planet is directly overhead. For AC/DC it comes back as a `curve` with a `points` array of `{latitude_deg, longitude_deg}` samples tracing the rising/setting line. **Errors** — A bad `category`/`planet` or invalid `birth_details` returns `400` with the offending field in `field_errors`; see the collection overview for the full error format.' parameters: - name: category in: path required: true schema: type: string example: MC description: 'Angle type: MC, IC, AC, or DC' - name: planet in: path required: true schema: type: string example: MOON description: 'Planet: SUN through PLUTO' requestBody: required: true content: application/json: schema: type: object properties: day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer second: type: integer tzone: type: number lat: type: number lon: type: number include_parans: type: boolean required: - day - month - year - hour - min - second - tzone - lat - lon - include_parans example: day: 22 month: 8 year: 1999 hour: 18 min: 50 second: 0 tzone: 5.5 lat: 19.0759837 lon: 72.8776559 include_parans: false responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Astrocartography documentation url: https://astrologyapi.com/products/astrocartography-api x-postman-collection: Astrocartography Collection /acg/travel: post: operationId: acg_travel summary: Travel (Plot Coordinates) tags: - Astrocartography description: 'Returns all of a chart''s astrocartography line coordinates so you can draw a full ACG map. **What it does** — For each planet it computes where on Earth that planet is exactly on one of the four angles — the MC/IC meridians (the longitudes where the planet is overhead or underfoot) and the AC/DC curves (the winding lines where it''s rising or setting). Plotting these lines shows which places amplify each planet''s themes for the person. Use it to render an interactive relocation/astrocartography map. **Send** — Standard `birth_details` (see the collection overview), all nine required. `include_parans` (boolean, default `false`) — set `true` to also return the latitude-crossing paran lines. Longitudes are reported east-positive. **Returns** — A JSON object with `meta` and a `lines` array, one entry per planet. Each entry holds that planet''s four angle lines: the `asc`/`dsc` are `curve` objects with a `points` array of `{latitude_deg, longitude_deg}` samples (stepped by latitude) tracing the rising/setting curve, while the MC/IC come back as `meridian` objects carrying a single `longitude_deg`. When `include_parans=true`, paran latitude crossings are included in the response. **Errors** — Invalid, missing, or out-of-range input returns `400` with the offending field in `field_errors`; see the collection overview for the full error format.' requestBody: required: true content: application/json: schema: type: object properties: day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer second: type: integer tzone: type: number lat: type: number lon: type: number include_parans: type: boolean required: - day - month - year - hour - min - second - tzone - lat - lon - include_parans example: day: 22 month: 8 year: 1999 hour: 18 min: 50 second: 0 tzone: 5.5 lat: 19.0759837 lon: 72.8776559 include_parans: false responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Astrocartography documentation url: https://astrologyapi.com/products/astrocartography-api x-postman-collection: Astrocartography Collection /advanced_panchang: post: operationId: advanced_panchang summary: advanced panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /advanced_panchang/sunrise: post: operationId: advanced_panchang_sunrise summary: advanced_panchang/sunrise tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /astro_details: post: operationId: astro_details summary: astro_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /ayanamsha: post: operationId: ayanamsha summary: ayanamsha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /basic_gem_suggestion: post: operationId: basic_gem_suggestion summary: gemstone suggestion tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /basic_panchang: post: operationId: basic_panchang summary: basic panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /basic_panchang/sunrise: post: operationId: basic_panchang_sunrise summary: basic_panchang/sunrise tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /bhav_madhya: post: operationId: bhav_madhya summary: bhav_madhya tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /bhavabala: post: operationId: bhavabala summary: bhavabala tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '11' year: '2026' hour: '11' min: '16' lat: '19.07' lon: '72.877' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /biorhythm: post: operationId: biorhythm summary: biorhythm tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /birth_details: post: operationId: birth_details summary: birth_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /challenge_numbers: post: operationId: challenge_numbers summary: challenge_numbers tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /chaughadiya_muhurta: post: operationId: chaughadiya_muhurta summary: chaughadiya_muhurta tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /chinese_year_forecast: post: operationId: chinese_year_forecast summary: chinese_year_forecast tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /chinese_zodiac: post: operationId: chinese_zodiac summary: chinese_zodiac tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /composite_horoscope: post: operationId: composite_horoscope summary: composite_horoscope tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: p_day: type: string p_month: type: string p_year: type: string p_hour: type: string p_min: type: string p_lat: type: string p_lon: type: string p_tzone: type: string s_day: type: string s_month: type: string s_year: type: string s_hour: type: string s_min: type: string s_lat: type: string s_lon: type: string s_tzone: type: string required: - p_day - p_month - p_year - p_hour - p_min - p_lat - p_lon - p_tzone - s_day - s_month - s_year - s_hour - s_min - s_lat - s_lon - s_tzone example: p_day: '1' p_month: '8' p_year: '2000' p_hour: '21' p_min: '30' p_lat: '19.20' p_lon: '25.20' p_tzone: '5.5' s_day: '1' s_month: '3' s_year: '2000' s_hour: '07' s_min: '00' s_lat: '19.33' s_lon: '25.20' s_tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /current_chardasha: post: operationId: current_chardasha summary: current_chardasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /current_vdasha: post: operationId: current_vdasha summary: current vdasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /current_vdasha_all: post: operationId: current_vdasha_all summary: current_vdasha_all tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /current_yogini_dasha: post: operationId: current_yogini_dasha summary: current_yogini_dasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /daily_nakshatra_prediction: post: operationId: daily_nakshatra_prediction summary: daily_nakshatra_prediction tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /daily_nakshatra_prediction/next: post: operationId: daily_nakshatra_prediction_next summary: daily_nakshatra_prediction next day tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /daily_nakshatra_prediction/previous: post: operationId: daily_nakshatra_prediction_previous summary: daily_nakshatra_prediction previous day tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /expression_number: post: operationId: expression_number summary: expression_number tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /friendship_report/tropical: post: operationId: friendship_report_tropical summary: friendship_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /general_ascendant_report: post: operationId: general_ascendant_report summary: general ascendant report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /general_ascendant_report/tropical: post: operationId: general_ascendant_report_tropical summary: general_ascendant_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /general_house_report/tropical/{planetName}: post: operationId: general_house_report_tropical_planetName summary: general_house_report tags: - Western Astrology parameters: - name: planetName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /general_house_report/{planet_name}: post: operationId: general_house_report_planet_name summary: general_house_report/:planet_name tags: - Vedic Astrology parameters: - name: planet_name in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /general_nakshatra_report: post: operationId: general_nakshatra_report summary: general_nakshatra_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string gender: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - gender - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' gender: female ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /general_rashi_report/{planet_name}: post: operationId: general_rashi_report_planet_name summary: general_rashi_report/:planet_name tags: - Vedic Astrology parameters: - name: planet_name in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /general_sign_report/tropical/{planetName}: post: operationId: general_sign_report_tropical_planetName summary: general_sign_report tags: - Western Astrology parameters: - name: planetName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /geo_details: post: operationId: geo_details summary: geo details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: place: type: string maxRows: type: string required: - place - maxRows example: place: mumbai maxRows: '6' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /ghat_chakra: post: operationId: ghat_chakra summary: ghat_chakra tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /hora_muhurta: post: operationId: hora_muhurta summary: hora_muhurta tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /hora_muhurta_dinman: post: operationId: hora_muhurta_dinman summary: hora_muhurta_dinman tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /horo_chart/{chartId}: post: operationId: horo_chart_chartId summary: horo_chart tags: - Vedic Astrology parameters: - name: chartId in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /horo_chart_extended: post: operationId: horo_chart_extended summary: horo_chart_extended tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /horo_chart_image/{chartId}: post: operationId: horo_chart_image_chartId summary: horo_chart_image tags: - Vedic Astrology parameters: - name: chartId in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string chartType: type: string description: You can mention south, east image_type: type: string description: To call in format other than svg planetColor: type: string description: Change the color of the planet. To set multiple colors, set a sequecne, for example - red,blue,black,green,orange,pink,maroon,purple,yellow extended: type: string description: To add outer planets - Neptune, Uranus and Pluto signColor: type: string description: To change the sign color lineColor: type: string description: To change the chart line color ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - chartType - image_type - planetColor - extended - signColor - lineColor - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' chartType: north image_type: png planetColor: ff0000 extended: 'true' signColor: ff0000 lineColor: ff0000 ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /horoscope_prediction/monthly/{zodiacName}: post: operationId: horoscope_prediction_monthly_zodiacName summary: horoscope_prediction/monthly tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: timezone: type: string required: - timezone example: timezone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /house_cusps/tropical: post: operationId: house_cusps_tropical summary: house_cusps/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /house_cusps_report/tropical: post: operationId: house_cusps_report_tropical summary: house_cusps_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /human-design: post: operationId: human_design summary: POST /v1/human-design tags: - Human Design description: Builds a person's core Human Design bodygraph from birth details. requestBody: required: true content: application/json: schema: type: object properties: name: type: string gender: type: string day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer lat: type: number lon: type: number tzone: type: integer required: - name - gender - day - month - year - hour - min - lat - lon - tzone example: name: Ajeet gender: male day: 15 month: 8 year: 1990 hour: 10 min: 30 lat: 39.9526 lon: -75.1652 tzone: -5 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Human Design documentation url: https://astrologyapi.com/products/human-design-api x-postman-collection: Human Design APIs Collection /human-design/analysis: post: operationId: human_design_analysis summary: POST /v1/human-design/analysis tags: - Human Design description: Summarizes a Human Design chart into concise analysis blocks. requestBody: required: true content: application/json: schema: type: object properties: name: type: string gender: type: string day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer lat: type: number lon: type: number tzone: type: integer required: - name - gender - day - month - year - hour - min - lat - lon - tzone example: name: Ajeet gender: male day: 15 month: 8 year: 1990 hour: 10 min: 30 lat: 39.9526 lon: -75.1652 tzone: -5 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Human Design documentation url: https://astrologyapi.com/products/human-design-api x-postman-collection: Human Design APIs Collection /human-design/chart-data: post: operationId: human_design_chart_data summary: POST /v1/human-design/chart-data tags: - Human Design description: Returns detailed Human Design chart payload including computed chart data. requestBody: required: true content: application/json: schema: type: object properties: name: type: string gender: type: string day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer lat: type: number lon: type: number tzone: type: integer required: - name - gender - day - month - year - hour - min - lat - lon - tzone example: name: Ajeet gender: male day: 15 month: 8 year: 1990 hour: 10 min: 30 lat: 39.9526 lon: -75.1652 tzone: -5 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Human Design documentation url: https://astrologyapi.com/products/human-design-api x-postman-collection: Human Design APIs Collection /human-design/chart-interpretation: post: operationId: human_design_chart_interpretation summary: POST /v1/human-design/chart-interpretation tags: - Human Design description: Returns an interpretation focused on chart-level Human Design insights. requestBody: required: true content: application/json: schema: type: object properties: name: type: string gender: type: string day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer lat: type: number lon: type: number tzone: type: integer required: - name - gender - day - month - year - hour - min - lat - lon - tzone example: name: Ajeet gender: male day: 15 month: 8 year: 1990 hour: 10 min: 30 lat: 39.9526 lon: -75.1652 tzone: -5 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Human Design documentation url: https://astrologyapi.com/products/human-design-api x-postman-collection: Human Design APIs Collection /human-design/traits-interpretation: post: operationId: human_design_traits_interpretation summary: POST /v1/human-design/traits-interpretation tags: - Human Design description: Returns trait-level interpretation for Human Design insights. requestBody: required: true content: application/json: schema: type: object properties: name: type: string gender: type: string day: type: integer month: type: integer year: type: integer hour: type: integer min: type: integer lat: type: number lon: type: number tzone: type: integer required: - name - gender - day - month - year - hour - min - lat - lon - tzone example: name: Ajeet gender: male day: 15 month: 8 year: 1990 hour: 10 min: 30 lat: 39.9526 lon: -75.1652 tzone: -5 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Human Design documentation url: https://astrologyapi.com/products/human-design-api x-postman-collection: Human Design APIs Collection /kalsarpa_details: post: operationId: kalsarpa_details summary: kalsarpa dosha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /karma_destiny_report: post: operationId: karma_destiny_report summary: karma_destiny_report tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /kp_birth_chart: post: operationId: kp_birth_chart summary: kp_birth_chart tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /kp_horoscope: post: operationId: kp_horoscope summary: kp_horoscope tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string aspects: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - aspects - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' aspects: 'true' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /kp_house_cusps: post: operationId: kp_house_cusps summary: kp_house_cusps tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /kp_house_significator: post: operationId: kp_house_significator summary: kp_house_significator tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /kp_planet_significator: post: operationId: kp_planet_significator summary: kp_planet_significator tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /kp_planets: post: operationId: kp_planets summary: kp_planets tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lalkitab_debts: post: operationId: lalkitab_debts summary: lalkitab_debts tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lalkitab_horoscope: post: operationId: lalkitab_horoscope summary: lalkitab_horoscope tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lalkitab_houses: post: operationId: lalkitab_houses summary: lalkitab_houses tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lalkitab_planets: post: operationId: lalkitab_planets summary: lalkitab_planets tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lalkitab_remedies/{planet_name}: post: operationId: lalkitab_remedies_planet_name summary: lalkitab_remedies/:planet_name tags: - Vedic Astrology parameters: - name: planet_name in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /lifepath_number: post: operationId: lifepath_number summary: lifepath_number tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /lunar_metrics: post: operationId: lunar_metrics summary: lunar metrics tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /major_chardasha: post: operationId: major_chardasha summary: major chardasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /major_vdasha: post: operationId: major_vdasha summary: major vdasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_ashtakoot_points: post: operationId: match_ashtakoot_points summary: match_ashtakoot_points tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_astro_details: post: operationId: match_astro_details summary: match_astro_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_birth_details: post: operationId: match_birth_details summary: match birth details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_dashakoot_points: post: operationId: match_dashakoot_points summary: match_dashakoot_points tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_making_detailed_report: post: operationId: match_making_detailed_report summary: match_making_detailed_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_making_report: post: operationId: match_making_report summary: match_making_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_manglik_report: post: operationId: match_manglik_report summary: match_manglik_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_obstructions: post: operationId: match_obstructions summary: match_obstructions tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_percentage: post: operationId: match_percentage summary: match_percentage tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /match_planet_details: post: operationId: match_planet_details summary: match_planet_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: m_day: type: string m_month: type: string m_year: type: string m_hour: type: string m_min: type: string m_lat: type: string m_lon: type: string m_tzone: type: string f_day: type: string f_month: type: string f_year: type: string f_hour: type: string f_min: type: string f_lat: type: string f_lon: type: string f_tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - m_day - m_month - m_year - m_hour - m_min - m_lat - m_lon - m_tzone - f_day - f_month - f_year - f_hour - f_min - f_lat - f_lon - f_tzone - ayanamsha example: m_day: '10' m_month: '5' m_year: '1990' m_hour: '19' m_min: '55' m_lat: '19.20' m_lon: '25.2' m_tzone: '5.5' f_day: '20' f_month: '10' f_year: '1993' f_hour: '20' f_min: '55' f_lat: '19.20' f_lon: '25.2' f_tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /monthly_panchang: post: operationId: monthly_panchang summary: monthly panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /moon_biorhythm: post: operationId: moon_biorhythm summary: moon biorhythm tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /moon_phase_report: post: operationId: moon_phase_report summary: moon_phase_report tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /natal_chart_interpretation: post: operationId: natal_chart_interpretation summary: natal_chart_interpretation tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /natal_house_cusp_report: post: operationId: natal_house_cusp_report summary: natal_house_cusp_report tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /natal_transits/daily: post: operationId: natal_transits_daily summary: natal_transits/daily tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /natal_transits/weekly: post: operationId: natal_transits_weekly summary: natal_transits/weekly tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /natal_wheel_chart: post: operationId: natal_wheel_chart summary: natal_wheel_chart tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /numero_fasts_report: post: operationId: numero_fasts_report summary: numero_fasts_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_fav_lord: post: operationId: numero_fav_lord summary: numero_fav_lord tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_fav_mantra: post: operationId: numero_fav_mantra summary: numero_fav_mantra tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_fav_time: post: operationId: numero_fav_time summary: numero_fav_time tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_place_vastu: post: operationId: numero_place_vastu summary: numero_place_vastu tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_prediction/daily: post: operationId: numero_prediction_daily summary: numero_prediction/daily tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_report: post: operationId: numero_report summary: numero_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numero_table: post: operationId: numero_table summary: numero_table tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string name: type: string required: - day - month - year - name example: day: '10' month: '5' year: '1990' name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /numerological_numbers: post: operationId: numerological_numbers summary: numeroloigcal numbers tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /panchada_maitri: post: operationId: panchada_maitri summary: panchanda maitri tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /panchang_chart/sunrise: post: operationId: panchang_chart_sunrise summary: panchang_chart/sunrise tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /panchang_festival: post: operationId: panchang_festival summary: panchang_festival tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /personal_day_prediction: post: operationId: personal_day_prediction summary: personal_day_prediction tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /personal_month_prediction: post: operationId: personal_month_prediction summary: personal_month_prediction tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /personal_year_prediction: post: operationId: personal_year_prediction summary: personal_year_prediction tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /personality_number: post: operationId: personality_number summary: personality_number tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /personality_report/tropical: post: operationId: personality_report_tropical summary: personality_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /pitra_dosha_report: post: operationId: pitra_dosha_report summary: pitra_dosha_report tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planet_ashtak/{planet_name}: post: operationId: planet_ashtak_planet_name summary: ashtakvarga tags: - Vedic Astrology parameters: - name: planet_name in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planet_nature: post: operationId: planet_nature summary: planet nature tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planet_panchang: post: operationId: planet_panchang summary: planet_panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planet_panchang/sunrise: post: operationId: planet_panchang_sunrise summary: planet_panchang/sunrise tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planets: post: operationId: planets summary: planets tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planets/extended: post: operationId: planets_extended summary: planets extended tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /planets/tropical: post: operationId: planets_tropical summary: planets/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /puja_suggestion: post: operationId: puja_suggestion summary: puja_suggestion tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /romantic_forecast_report/tropical: post: operationId: romantic_forecast_report_tropical summary: romantic_forecast_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /romantic_personality_report/tropical: post: operationId: romantic_personality_report_tropical summary: romantic_personality_report/tropical tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /rudraksha_suggestion: post: operationId: rudraksha_suggestion summary: rudraksha_suggestion tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sadhesati_current_status: post: operationId: sadhesati_current_status summary: sadhesati_current_status tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sadhesati_life_details: post: operationId: sadhesati_life_details summary: sadhesati_life_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sadhesati_remedies: post: operationId: sadhesati_remedies summary: sadhesati_remedies tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sarvashtak: post: operationId: sarvashtak summary: sarvashtak tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /shadbala: post: operationId: shadbala summary: shadbala tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '11' year: '2026' hour: '11' min: '16' lat: '19.07' lon: '72.877' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /solar_return_aspects_report: post: operationId: solar_return_aspects_report summary: solar_return_aspects_report tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string solar_year: type: string required: - day - month - year - hour - min - lat - lon - tzone - solar_year example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' solar_year: '2027' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /solar_return_details: post: operationId: solar_return_details summary: solar_return_details tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /solar_return_house_cusps: post: operationId: solar_return_house_cusps summary: solar_return_house_cusps tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string solar_year: type: string required: - day - month - year - hour - min - lat - lon - tzone - solar_year example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' solar_year: '2027' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /solar_return_planet_aspects: post: operationId: solar_return_planet_aspects summary: solar_return_planet_aspects tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string solar_year: type: string required: - day - month - year - hour - min - lat - lon - tzone - solar_year example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' solar_year: '2027' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /solar_return_planet_report: post: operationId: solar_return_planet_report summary: solar_return_planet_report tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string solar_year: type: string required: - day - month - year - hour - min - lat - lon - tzone - solar_year example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' solar_year: '2027' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /solar_return_planets: post: operationId: solar_return_planets summary: solar_return_planets tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string solar_year: type: string required: - day - month - year - hour - min - lat - lon - tzone - solar_year example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' solar_year: '2027' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /soul_urge_number: post: operationId: soul_urge_number summary: soul_urge_number tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /sub_chardasha/{md}: post: operationId: sub_chardasha_md summary: sub sub chardasha tags: - Vedic Astrology parameters: - name: md in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sub_conscious_self_number: post: operationId: sub_conscious_self_number summary: sub_conscious_self_number tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string full name: type: string required: - day - month - year - full name example: day: '10' month: '5' year: '1992' full name: demo responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /sub_sub_sub_sub_vdasha/{md}/{ad}/{pd}/{sd}: post: operationId: sub_sub_sub_sub_vdasha_md_ad_pd_sd summary: Pran dasha tags: - Vedic Astrology parameters: - name: md in: path required: true schema: type: string - name: ad in: path required: true schema: type: string - name: pd in: path required: true schema: type: string - name: sd in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sub_sub_sub_vdasha/{md}/{ad}/{pd}: post: operationId: sub_sub_sub_vdasha_md_ad_pd summary: Sookshma dasha tags: - Vedic Astrology parameters: - name: md in: path required: true schema: type: string - name: ad in: path required: true schema: type: string - name: pd in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sub_sub_vdasha/{md}/{ad}: post: operationId: sub_sub_vdasha_md_ad summary: Pratyantar dasha tags: - Vedic Astrology parameters: - name: md in: path required: true schema: type: string - name: ad in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sub_vdasha/{md}: post: operationId: sub_vdasha_md summary: Antar dasha tags: - Vedic Astrology parameters: - name: md in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /sun_sign_consolidated/daily/{zodiacName}: post: operationId: sun_sign_consolidated_daily_zodiacName summary: sun_sign_consolidated/daily tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: timezone: type: string required: - timezone example: timezone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /sun_sign_prediction/daily/{zodiacName}: post: operationId: sun_sign_prediction_daily_zodiacName summary: sun_sign_prediction/daily tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: timezone: type: string required: - timezone example: timezone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /sun_sign_prediction/next/{zodiacName}: post: operationId: sun_sign_prediction_next_zodiacName summary: sun_sign_prediction/next tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: timezone: type: string required: - timezone example: timezone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /sun_sign_prediction/previous/{zodiacName}: post: operationId: sun_sign_prediction_previous_zodiacName summary: sun_sign_prediction/previous tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: timezone: type: string required: - timezone example: timezone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /synastry_horoscope: post: operationId: synastry_horoscope summary: synastry_horoscope tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: p_day: type: string p_month: type: string p_year: type: string p_hour: type: string p_min: type: string p_lat: type: string p_lon: type: string p_tzone: type: string s_day: type: string s_month: type: string s_year: type: string s_hour: type: string s_min: type: string s_lat: type: string s_lon: type: string s_tzone: type: string required: - p_day - p_month - p_year - p_hour - p_min - p_lat - p_lon - p_tzone - s_day - s_month - s_year - s_hour - s_min - s_lat - s_lon - s_tzone example: p_day: '1' p_month: '8' p_year: '2000' p_hour: '21' p_min: '30' p_lat: '19.20' p_lon: '25.20' p_tzone: '5.5' s_day: '1' s_month: '3' s_year: '2000' s_hour: '07' s_min: '00' s_lat: '19.33' s_lon: '25.20' s_tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /tamil_month_panchang: post: operationId: tamil_month_panchang summary: tamil_month_panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /tamil_panchang: post: operationId: tamil_panchang summary: tamil_panchang tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /tarot_predictions: post: operationId: tarot_predictions summary: tarot_predictions tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: love: type: string career: type: string finance: type: string required: - love - career - finance example: love: '12' career: '23' finance: '45' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /timezone_with_dst: post: operationId: timezone_with_dst summary: timezone_with_dst tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: latitude: type: string longitude: type: string date: type: string description: mm-dd-yyyy required: - latitude - longitude - date example: latitude: '19.23' longitude: '72.23' date: 12-5-1993 responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /tropical_transits/daily: post: operationId: tropical_transits_daily summary: tropical_transits/daily tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /tropical_transits/monthly: post: operationId: tropical_transits_monthly summary: tropical_transits/monthly tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /tropical_transits/weekly: post: operationId: tropical_transits_weekly summary: tropical_transits/weekly tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /varshaphal_details: post: operationId: varshaphal_details summary: varshaphal_details tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_harsha_bala: post: operationId: varshaphal_harsha_bala summary: varshaphal_harsha_bala tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_month_chart: post: operationId: varshaphal_month_chart summary: varshaphal_month_chart tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_mudda_dasha: post: operationId: varshaphal_mudda_dasha summary: varshaphal_mudda_dasha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_muntha: post: operationId: varshaphal_muntha summary: varshaphal_muntha tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_panchavargeeya_bala: post: operationId: varshaphal_panchavargeeya_bala summary: varshaphal_panchavargeeya_bala tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_planets: post: operationId: varshaphal_planets summary: varshaphal_planets tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_saham_points: post: operationId: varshaphal_saham_points summary: varshaphal_saham_points tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_year_chart: post: operationId: varshaphal_year_chart summary: varshaphal_year_chart tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /varshaphal_yoga: post: operationId: varshaphal_yoga summary: varshaphal_yoga tags: - Vedic Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string ayanamsha: type: string description: 'other values : KP_OLD, KP_NEW,YUKTESHWAR,,RAMAN,JN_BHASIN,FAGAN_BRADLEY' required: - day - month - year - hour - min - lat - lon - tzone - ayanamsha example: day: '10' month: '5' year: '1990' hour: '19' min: '55' lat: '19.20' lon: '25.2' tzone: '5.5' ayanamsha: LAHIRI responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Vedic Astrology documentation url: https://astrologyapi.com/developers/v1/vedic x-postman-collection: Premium Plan (User Collection) /western_chart_data: post: operationId: western_chart_data summary: western_chart_data tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /western_horoscope: post: operationId: western_horoscope summary: western_horoscope tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: day: type: string month: type: string year: type: string hour: type: string min: type: string lat: type: string lon: type: string tzone: type: string required: - day - month - year - hour - min - lat - lon - tzone example: day: '10' month: '5' year: '1992' hour: '21' min: '30' lat: '19.20' lon: '25.2' tzone: '5.5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /yes_no_tarot: post: operationId: yes_no_tarot summary: yes_no_tarot tags: - Western Astrology requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: tarot_id: type: string required: - tarot_id example: tarot_id: '5' responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) /zodiac_compatibility/{zodiacName}/{partnerZodiacName}: post: operationId: zodiac_compatibility_zodiacName_partnerZodiacName summary: zodiac_compatibility tags: - Western Astrology parameters: - name: zodiacName in: path required: true schema: type: string - name: partnerZodiacName in: path required: true schema: type: string responses: '200': description: Computed result. The provider does not publish a response schema for this operation; see the endpoint reference for the returned fields. content: application/json: schema: type: object '401': description: Authentication failed — missing or invalid credentials. content: application/json: schema: $ref: '#/components/schemas/Error' example: status: false msg: API authentication failed! '404': description: The requested API endpoint is not available. content: application/json: schema: $ref: '#/components/schemas/NotFound' example: status: false statusCode: 404 error_msg: The requested API endpoint is not available. Kindly check your api name/url or HTTP method type. externalDocs: description: Western Astrology documentation url: https://www.astrologyapi.com/western-api-docs x-postman-collection: Business Plan (User Collection) components: securitySchemes: basicAuth: type: http scheme: basic description: HTTP Basic authentication. Username is your AstrologyAPI User ID, password is your API key. Used with form-encoded request bodies on subscription endpoints. accessToken: type: apiKey in: header name: x-astrologyapi-key description: Wallet Access Token sent in the x-astrologyapi-key header, used with JSON request bodies on wallet-billed and Chat endpoints. schemas: Error: type: object properties: status: type: boolean msg: type: string NotFound: type: object properties: status: type: boolean statusCode: type: integer error_msg: type: string