Copy page
Copy page as Markdown for LLMs
Introducing the Flirt Love Reading API, your tool for providing users with engaging insights into their romantic connections. This API delivers flirtation guidance, compatibility cues, and emotional energy readings, helping users build meaningful romantic interactions with confidence and charm.
Step by Step Flirt Love Reading API Postman Testing Integration
Use the lan parameter in the request body to set 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:
You can translate or customize API responses using the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/flirt-love-reading
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI Key (found on your developer dashboard). |
| lan | String | Language code (default: en). How to update translator. |
{
"success": 1,
"data": {
"prediction": {
"card": "JUSTICE",
"result": "It can be tough to open up and be vulnerable, especially when it comes to revealing your innermost truths. But, the Justice card reminds you that honesty is a crucial aspect of any relationship. It's not just about seeking the truth from others, but also about being truthful with yourself and your partner. It's important to take accountability for your actions and feelings, even if they are difficult to confront.\r\n\r\nIf you find yourself holding back because of fear of judgment, it's time to reconsider the foundation of your relationship. Are you truly with someone who loves and accepts you for who you are? Or are you hiding behind a facade to please someone else? Remember, a healthy relationship is built on mutual trust, respect, and honesty.\r\n\r\nBy being truthful with yourself and your partner, you are creating a space for genuine communication and understanding. This will not only strengthen your relationship but also allow for growth and personal development. Don't be afraid to speak your truth and hold yourself accountable. The Justice card is a reminder that the truth shall set you free.",
"image": "https://divineapi.com/admin/uploads/tarot_daily_flirt/12.png",
"image2": "https://divineapi.com/admin/uploads/tarot_daily_flirt/12_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_daily_flirt/12_3.jpg"
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/flirt-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/flirt-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/flirt-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/flirt-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)