Astrology API Western Astrology API

The Western Astrology API from Astrology API — 51 operation(s) for western astrology.

Operations 51

POST /challenge_numbers challenge_numbers #
POST /chinese_year_forecast chinese_year_forecast #
POST /chinese_zodiac chinese_zodiac #
POST /composite_horoscope composite_horoscope #
POST /expression_number expression_number #
POST /friendship_report/tropical friendship_report/tropical #
POST /general_ascendant_report/tropical general_ascendant_report/tropical #
POST /general_house_report/tropical/{planetName} general_house_report #
POST /general_sign_report/tropical/{planetName} general_sign_report #
POST /horoscope_prediction/monthly/{zodiacName} horoscope_prediction/monthly #
POST /house_cusps/tropical house_cusps/tropical #
POST /house_cusps_report/tropical house_cusps_report/tropical #
POST /karma_destiny_report karma_destiny_report #
POST /lifepath_number lifepath_number #
POST /lunar_metrics lunar metrics #
POST /moon_phase_report moon_phase_report #
POST /natal_chart_interpretation natal_chart_interpretation #
POST /natal_house_cusp_report natal_house_cusp_report #
POST /natal_transits/daily natal_transits/daily #
POST /natal_transits/weekly natal_transits/weekly #
POST /natal_wheel_chart natal_wheel_chart #
POST /numerological_numbers numeroloigcal numbers #
POST /personal_day_prediction personal_day_prediction #
POST /personal_month_prediction personal_month_prediction #
POST /personal_year_prediction personal_year_prediction #
POST /personality_number personality_number #
POST /personality_report/tropical personality_report/tropical #
POST /planets/tropical planets/tropical #
POST /romantic_forecast_report/tropical romantic_forecast_report/tropical #
POST /romantic_personality_report/tropical romantic_personality_report/tropical #
POST /solar_return_aspects_report solar_return_aspects_report #
POST /solar_return_details solar_return_details #
POST /solar_return_house_cusps solar_return_house_cusps #
POST /solar_return_planet_aspects solar_return_planet_aspects #
POST /solar_return_planet_report solar_return_planet_report #
POST /solar_return_planets solar_return_planets #
POST /soul_urge_number soul_urge_number #
POST /sub_conscious_self_number sub_conscious_self_number #
POST /sun_sign_consolidated/daily/{zodiacName} sun_sign_consolidated/daily #
POST /sun_sign_prediction/daily/{zodiacName} sun_sign_prediction/daily #
POST /sun_sign_prediction/next/{zodiacName} sun_sign_prediction/next #
POST /sun_sign_prediction/previous/{zodiacName} sun_sign_prediction/previous #
POST /synastry_horoscope synastry_horoscope #
POST /tarot_predictions tarot_predictions #
POST /tropical_transits/daily tropical_transits/daily #
POST /tropical_transits/monthly tropical_transits/monthly #
POST /tropical_transits/weekly tropical_transits/weekly #
POST /western_chart_data western_chart_data #
POST /western_horoscope western_horoscope #
POST /yes_no_tarot yes_no_tarot #
POST /zodiac_compatibility/{zodiacName}/{partnerZodiacName} zodiac_compatibility #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/astrology-api-western-astrology-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

astrology-api-western-astrology-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AstrologyAPI JSON Western Astrology 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
servers:
- url: https://json.astrologyapi.com/v1
  description: AstrologyAPI JSON API production host
security:
- basicAuth: []
- accessToken: []
tags:
- name: Western Astrology
paths:
  /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)
  /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)
  /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/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_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)
  /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)
  /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)
  /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:
  

# --- truncated at 32 KB (116 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/astrology-api/refs/heads/main/openapi/astrology-api-western-astrology-api-openapi.yml