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

Ex-Flame Reading

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

Step by Step Ex-Flame Reading API Postman Testing Integration


Supported Language Codes

Use the lan parameter 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:
For multilingual support, visit the DivineAPI Translator.


API Endpoint

POST https://astroapi-5.divineapi.com/api/v2/ex-flame-reading

Headers

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

Request Body

NameTypeDescription
api_key*StringYour DivineAPI Key (available in your developer dashboard).
lanStringLanguage code (default: en). How to update translator.

200: OK Successful

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

Example Code Implementations

Below are example implementations in various programming environments.


cURL

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

NodeJS

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

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

Python

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)