Copy page
Copy page as Markdown for LLMs
Introducing the Egyptian Prediction API, a gateway to ancient Egyptian wisdom and mystical insights. This API provides users with divinatory guidance rooted in Egypt’s timeless spiritual traditions. Integrate it into your applications to deliver powerful and culturally rich readings that blend history, intuition, and destiny.
Step by Step Egyptian Prediction API Postman Testing Integration
Use the lan parameter in the request body to specify the desired response language.
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| pt | Portuguese |
| fr | French |
| es | Spanish |
| ru | Russian |
| de | German |
| nl | Dutch |
| it | Italian |
| pl | Polish |
| ar | Arabic |
| ja | Japanese |
| zh | Chinese |
| tm | Tamil |
| tl | Telugu |
| tr | Turkish |
| ta | Filipino/Tagalog |
| bn | Bengali |
| ma | Marathi |
| ml | Malayalam |
| kn | Kannada |
Guide:
You can update or translate responses using the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/egyptian-prediction
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI Key (available on your developer dashboard). |
| lan | String | Language code (default: en). How to update translator. |
{
"success": 1,
"data": {
"prediction": {
"card": "THE CHARIOT",
"result": "You have the power to take charge of your life and steer it in the direction you want. The Chariot card reminds you that you have the ability to overcome any obstacles and achieve your goals. But, in order to do so, you must be willing to put in the hard work and effort required to succeed. The Chariot represents determination, discipline, and focus.\r\n\r\nHowever, it is important to note that while success is important, it is also vital to maintain balance in your life. Make sure that you are not sacrificing your personal relationships or well-being in the pursuit of success. Take time to appreciate the journey and not just the destination.\r\n\r\nThe Chariot also signifies the need to make decisions and take action. You may be at a crossroads in your life, and it is up to you to choose the path that aligns with your values and desires. Trust your intuition and inner wisdom to guide you towards the right decision.\r\n\r\nRemember, the Chariot is a symbol of victory and triumph, but it is also a reminder that success is not handed to you on a silver platter. You must be willing to put in the hard work and effort to achieve your goals. With the right mindset and determination, you can ride the Chariot towards success and fulfillment.",
"image": "https://divineapi.com/admin/uploads/tarot_egyptian/8.jpg",
"image2": "https://divineapi.com/admin/uploads/tarot_egyptian/8_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_egyptian/8_3.jpg"
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/egyptian-prediction' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}' \
--form 'lan="en"'var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-5.divineapi.com/api/v2/egyptian-prediction',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-5.divineapi.com/api/v2/egyptian-prediction",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {Your Auth Token}"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});import requests
url = "https://astroapi-5.divineapi.com/api/v2/egyptian-prediction"
payload = {'api_key': '{Your API Key}',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)