Copy page
Copy page as Markdown for LLMs
Introducing the In-Depth Love Reading API, a feature-rich solution for providing users with profound insights into their romantic and emotional connections. This API explores the deeper layers of relationship dynamics, compatibility patterns, and emotional guidance — empowering users with clarity and understanding in their love journeys.
Step by Step In-Depth Love Reading API Postman Testing Integration
Use the lan parameter in the request body to define your preferred 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 localize or translate responses using the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/in-depth-love-reading
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI Key (available in your developer dashboard). |
| lan | String | Language code (default: en). How to update translator. |
{
"success": 1,
"data": {
"prediction": {
"card": "WHEEL OF FORTUNE",
"result": "You may feel like you are in a rut, and that things are not going your way. However, the Wheel of Fortune card is here to remind you that you are not powerless, and that you have the ability to turn things around. Even in the most difficult of situations, you can find a glimmer of hope and positivity. It is essential to acknowledge that loss is a part of life, and it is not always a bad thing. It can be an opportunity to learn and grow, to make better choices in the future.\r\n\r\nWhen it comes to relationships, the Wheel of Fortune can be a warning to be mindful of the patterns and habits you have developed. It can be easy to mistake dysfunctional relationships for love, especially if that is all you have known. However, this card is an invitation to break free from those patterns and make different choices. Remember, you are not a victim of circumstance. You have the power to create the life and relationships you desire.\r\n\r\nTake the guidance of the Wheel of Fortune as a reminder that life is full of ups and downs. Embrace the lessons that come with the challenging times, and don't be afraid to make changes in your relationships and life. The wheel is always turning, and with a positive mindset and a willingness to take action, you can navigate through the tough times and come out stronger on the other side.",
"image": "https://divineapi.com/admin/uploads/tarot_daily_love/11.png",
"image2": "https://divineapi.com/admin/uploads/tarot_daily_love/11_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_daily_love/11_3.jpg"
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/in-depth-love-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/in-depth-love-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/in-depth-love-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/in-depth-love-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)