Copy page
Copy page as Markdown for LLMs
Introducing the Ex-Flame Reading API, a powerful tool designed to offer users meaningful insights into past relationships. This API helps users understand the emotional patterns, unresolved lessons, and personal growth opportunities that emerge from their previous romantic experiences — enabling reflection, healing, and closure.
Step by Step Ex-Flame Reading 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:
For multilingual support, visit the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/ex-flame-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": "STRENGTH",
"result": "The Strength card symbolizes more than just physical strength. It represents the strength of character and the ability to overcome obstacles, which can be a powerful tool in any relationship. This card may be telling you that your past relationship ended due to a lack of understanding or miscommunication. If both partners are willing to make a conscious effort to understand and support each other, it is possible to overcome any challenges that arise. However, it is important to remember that the Strength card is not about dominating or overpowering your partner. It is about finding a balance and working together to achieve a common goal.\r\n\r\nSometimes, the Strength card can also indicate that there is still some unresolved tension or animosity between former lovers. In this case, it may be necessary to work through these issues before attempting to rekindle the relationship. This can be a difficult process, but it can also be incredibly rewarding in the end. The key is to approach the situation with an open mind and a willingness to listen and understand each other's perspectives.\r\n\r\nRemember, the Strength card is a powerful symbol of the ability to overcome obstacles and achieve success. If you and your former partner are able to work together and find a common ground, anything is possible. But it will take effort and a strong commitment from both sides to make it work. Trust yourself and trust the process, and you may be surprised by what you can accomplish together.",
"image": "https://divineapi.com/admin/uploads/tarot_former_flame/9.png",
"image2": "https://divineapi.com/admin/uploads/tarot_former_flame/9_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_former_flame/9_3.jpg"
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/ex-flame-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/ex-flame-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/ex-flame-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/ex-flame-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)