Planetary Strength API - Python/Flask Integration

Calculate Shadbala and other planetary strength metrics

Overview

Calculate Shadbala and other planetary strength metrics

POST /v2/astrology/planetary-strength
Pricing: $0.005 per request | Framework: Python/Flask | Auth: API Key required

Quick Start

1. Installation

pip install requests flask python-dotenv

2. Environment Setup

# .env
VEDIKA_API_KEY=your_api_key_here
Security: Never commit API keys to version control. Always use environment variables.

Complete Implementation

# planetary_strength.py
import os
import requests
from flask import Blueprint, request, jsonify
from dotenv import load_dotenv

load_dotenv()

planetary_strength_bp = Blueprint('planetary_strength', __name__)

VEDIKA_BASE_URL = 'https://vedika-api-854222120654.us-central1.run.app'
VEDIKA_API_KEY = os.getenv('VEDIKA_API_KEY')

def get_planetary_strength(params):
    """
    Calculate Shadbala and other planetary strength metrics
    """
    headers = {
        'Content-Type': 'application/json',
        'x-api-key': VEDIKA_API_KEY
    }

    try:
        response = requests.post(
            f'{VEDIKA_BASE_URL}/v2/astrology/planetary-strength',
            json=params,
            headers=headers,
            timeout=10
        )
        response.raise_for_status()
        return response.json()
    except requests.exceptions.RequestException as e:
        raise Exception(f'Vedika API Error: {str(e)}')

@planetary_strength_bp.route('/planetary-strength', methods=['POST'])
def planetary_strength_route():
    """
    Flask route for Planetary Strength
    """
    try:
        data = request.get_json()
        result = get_planetary_strength(data)
        return jsonify(result), 200
    except Exception as e:
        return jsonify({'error': str(e)}), 500

# app.py usage:
# from planetary_strength import planetary_strength_bp
# app.register_blueprint(planetary_strength_bp, url_prefix='/api')

Request Parameters

Parameter Type Required Description
datetime varies Yes See API documentation
latitude varies Yes See API documentation
longitude varies Yes See API documentation
timezone varies Yes See API documentation

Error Handling

Status Code Error Solution
400 Bad Request Check request parameters and format
401 Unauthorized Verify API key is correct
402 Payment Required Insufficient balance - recharge at console.vedika.io
429 Rate Limit Exceeded Implement exponential backoff or upgrade plan
500 Server Error Retry after a few seconds

Best Practices

Response Format

{
  "success": true,
  "data": {
    // Endpoint-specific response data
  },
  "timestamp": "2026-01-07T10:30:00Z",
  "cost": 0.005
}

Related Endpoints

Birth Chart Kundli Match Panchang Dasha Periods Dosha Analysis

Other Frameworks

React Next.js Vue.js Angular Node.js Django Ruby on Rails

Support

Need help integrating this endpoint?