search

Copy page

Copy page as Markdown for LLMs

View as Markdown

View this page as plain text


Open in ChatGPT

Ask ChatGPT about this page

Open in Claude

Ask Claude about this page

Divine Angel Reading API

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

Step by Step Divine Angel Reading API Postman Testing Integration


Supported Language Codes

Use the lan field in the request body to specify the desired response language.

CodeLanguage
enEnglish
hiHindi
ptPortuguese
frFrench
esSpanish
ruRussian
deGerman
nlDutch
itItalian
plPolish
arArabic
jaJapanese
zhChinese
tmTamil
tlTelugu
trTurkish
taFilipino/Tagalog
bnBengali
maMarathi
mlMalayalam
knKannada

Guide:
Update your translator settings or switch languages using the DivineAPI Translator.


API Endpoint

POST https://astroapi-5.divineapi.com/api/v2/divine-angel-reading

Headers

NameTypeDescription
Authorization*StringYour API Access Token. Example: Bearer {token}

Request Body

NameTypeDescription
api_key*StringYour DivineAPI key available on your dashboard.
lanStringLanguage code as per the table above. Default is en.

200: OK Successful

{
    "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"
        }
    }
}

Example Code Implementations

Below are example implementations in various programming environments.


cURL

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"'

NodeJS

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);
});


JavaScript jQuery AJAX

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);
});

Python

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)