Loading...
Please wait while we prepare the API documentation.
Please wait while we prepare the API documentation.

Welcome to the Astrochalit API Documentation! This guide will help you integrate with the Astrochalit API, enabling you to access various astrology features such as Vedic and Western astrology charts, ephemeris, planet ingress, and more.
1var api = '';
2var apiKey = '<Your Api Key>';
3
4var data = {}
5
6var auth = 'Basic ' + (apiKey);
7
8axios({
9 url: "",
10 method: 'POST',
11 headers: {
12 'Authorization': auth,
13 'Content-Type': 'application/json',
14 'Accept-Language': language
15 },
16 data: data
17})
18.then(function (response) {
19 console.log(response.data);
20})
21.catch(function (error) {
22 console.error(error);
23});