Know Your Friend Reading
Introducing our 'Know Your Friend Reading' API, a fun and engaging way to analyze and understand your friendships. Access personalized insights and compatibility assessments to strengthen bonds and discover more about your connections with ease.
POST https://divineapi.com/api/1.0/get_know_your_friend_reading.php
Returns Know Your Friend Reading in response
Request Body
Name
Type
Description
api_key*
String
Your API Key (can be found on your Divineapi dashboard)
{
"success":1,
"message":"Know Your Friend Reading Result.",
"data":{
"card":"THE HIGH PRIESTESS",
"result":"You might find
it hard to approach the High Priestess at first, but don't be discouraged. This person is worth getting to know. As a
wise and introspective individual, your friend is highly intuitive and can offer valuable insights into any situation.
The High Priestess has a way of seeing through the surface and getting to the heart of the matter. With this friend by
your side, you will feel more confident in your decisions and be better equipped to handle any challenges that come your
way.\r\n\r\nThis friend may not be the most outgoing or social person, but that doesn't mean they don't care deeply
about their relationships. In fact, they value deep and meaningful connections over superficial ones. If you are patient
and understanding, you will earn their trust and loyalty. Once you've established a strong bond with the High Priestess,
you'll find that you can confide in them and they will always have your best interests at heart.\r\n\r\nThe friendship
you form with the High Priestess is likely to be spiritually enriching as well. This person is highly attuned to their
own intuition and can help you tap into your own inner wisdom. By learning to trust yourself and your instincts, you
will be better equipped to navigate life's challenges and make decisions that align with your true self. In short, a
friendship with the High Priestess is not only fulfilling but
transformative.",
"image":"https:\/\/divineapi.com\/admin\/uploads\/tarot_friend_or_foe\/3.png",
"image2":"https:\/\/divineapi.com\/admin\/uploads\/tarot_friend_or_foe\/3_2.jpg",
"image3":"https:\/\/divineapi.com\/admin\/uploads\/tarot_friend_or_foe\/3_3.jpg"
}
}
curl --location 'https://divineapi.com/api/1.0/get_know_your_friend_reading.php' \
--form 'api_key="Your divine api key"'
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://divineapi.com/api/1.0/get_know_your_friend_reading.php',
'headers': {
},
formData: {
'api_key': 'Your divine api key'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "Your divine api key");
var settings = {
"url": "https://divineapi.com/api/1.0/get_know_your_friend_reading.php",
"method": "POST",
"timeout": 0,
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});
import requests
url = "https://divineapi.com/api/1.0/get_know_your_friend_reading.php"
payload = {'api_key': 'Your divine api key'}
response = requests.request("POST", url, data=payload)
print(response.text)
Last updated