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
POST https://astroapi-5.divineapi.com/api/v3/divine-angel-readingGuide: If you only need English, use this endpoint.
POST https://astroapi-5-translator.divineapi.com/api/v3/divine-angel-readingGuide: If you want the response in any other language use this translator endpoint.
Use the lan field in the request body to specify the desired response language.
Supported Reference Article:
https://support.divineapi.com/general-api-support/translating-apis-into-a-different-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: Ensure that your translator configuration is up to date via DivineAPI Translator.
| 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. |
| cards_count | Integer | Number of cards to display, eg: 1 (Allowed: 1/2/3/4/5, Default: 1) |
| card_image | Integer | Card image UI type, eg: 1 (Allowed: 1/2/3, Default: 1) |
{
"success": 1,
"data": {
"cards": [
{
"card": "THE HERMIT",
"result": "If you're feeling physically or mentally exhausted, know that the angel Ariel can help. As an overseer of healing powers in the earth and air, Ariel can provide you with the strength and support you need to overcome your stress and fears.\r\n\r\nThis angel's presence is a reminder that you are strong enough to overcome any adversity. By working with Ariel, you can learn to live in harmony with yourself, curb negative energy, and avoid harm. The healing powers of this angel can also help you make the world around you a healthier place.\r\n\r\nTo receive guidance from Ariel, it's important to consider new perspectives. This can mean seeking out different sources of information, exploring new ways of thinking, or simply stepping outside of your comfort zone. By embracing new perspectives, you can expand your horizons and gain a deeper understanding of the world around you.\r\n\r\nRemember that Ariel is always there to offer healing support and guidance. By working with this angel and taking steps to prioritize your well-being, you can overcome your challenges and live a more fulfilling life.",
"image": "https://divineapi.com/admin/uploads/tarot_daily_career/10.png"
}
]
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v3/divine-angel-reading' \
--header 'Authorization: Bearer {token}' \
--form 'api_key="Your API Key"' \
--form 'lan="en"' \
--form 'cards_count="1"' \
--form 'card_image="1"'var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-5.divineapi.com/api/v3/divine-angel-reading',
'headers': {
'Authorization': 'Bearer {token}'
},
formData: {
'api_key': 'Your API Key',
'lan': 'en',
'cards_count': '1',
'card_image': '1'
}
};
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");
form.append("cards_count", "1");
form.append("card_image", "1");
var settings = {
"url": "https://astroapi-5.divineapi.com/api/v3/divine-angel-reading",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {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/v3/divine-angel-reading"
payload = {'api_key': 'Your API Key',
'lan': 'en',
'cards_count': '1',
'card_image': '1'}
files=[
]
headers = {
'Authorization': 'Bearer {token}'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)