Copy page
Copy page as Markdown for LLMs
Introducing the Divine Angel Reading API, a spiritual tool designed to deliver angelic messages, divine insights, and guidance from celestial energies. This API allows developers to integrate personalized angel card readings into websites and applications, offering users inspiration, motivation, and clarity in their daily lives.
Step by Step Divine Angel Reading API Postman Testing Integration
Use the lan field 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:
Update your translator settings or switch languages using the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/divine-angel-reading
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI key available on your dashboard. |
| lan | String | Language code as per the table above. Default is en. |
{
"success": 1,
"data": {
"prediction": {
"card": "JUDGEMENT",
"result": "Zuriel sees that you have been feeling stagnant in your routine, and it's time to break out of that cycle. You may have been so focused on the practical aspects of life, like work and responsibilities, that you have forgotten to enjoy the little things that make life extraordinary. Zuriel encourages you to take a step back and reassess your priorities. Are you doing things that truly bring you joy and fulfillment?\r\n\r\nIf not, it's time to make a change. Zuriel is here to guide you through this process and help you take risks that will bring more passion into your life. It can be scary to step out of your comfort zone, but remember that the greatest growth comes from taking those leaps of faith.\r\n\r\nPerhaps you can try something new, like learning a new hobby or taking a spontaneous trip. Zuriel will help you tap into your intuition and embrace the magic of life. With Zuriel's guidance, you will discover that you are capable of achieving great things and living a more fulfilling life. So, take a deep breath, and let Zuriel help you open your eyes to the extraordinary possibilities that await you.",
"image": "https://divineapi.com/admin/uploads/tarot_daily_career/21.png",
"image2": "https://divineapi.com/admin/uploads/tarot_daily_career/21_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_daily_career/21_3.jpg"
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/divine-angel-reading' \
--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/divine-angel-reading',
'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/divine-angel-reading",
"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/divine-angel-reading"
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)