Get Love Tarot Reading
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/love_tarot_reading |
{
"status_code": 200,
"status": true,
"data": {
"card_1": {
"card_id": 68,
"card_name": "Four of Pentacles",
"position_key": "upright",
"position": "Upright",
"summary": "",
"meaning": [
"In a love Tarot reading, the Four of Pentacles is not a favourable card to get. If you are in a relationship, it can show that either you or your partner may be acting in a possessive, jealous or controlling manner which could be having a bad effect on your relationship. Be wary not to hold on so tight that you press the life out of your relationship.",
"It can also be a sign that one of you is holding onto past wrongs or a grudge or that there are deep seated problems causing issues in the relationship. If you partner has aggrieved you in some way you will want to make a decision to either forgive them and move forward together or let go of the relationship. Holding onto grudges is toxic and breeds resentment. If you are unmarried, the Four of Pentacles signifies that you may be holding yourself back from meeting someone new.",
"This may be because you fear change, you are not future new relationships with an open mind and heart or it can be a sign that you are still holding onto feelings for an ex and are not prepared to move on. Whatever the cause you will want to resolve these issues before you can fully hug a new relationship."
]
},
"card_2": {
"card_id": 8,
"card_name": "The Chariot",
"position_key": "reverse",
"position": "Reversed",
"summary": "",
"meaning": [
"The overall message of The Chariot reversed in a love Tarot reading is slow down! If you are a relationship and things aren’t progressing as fast as you would like you need to have patience and be sure that things will progress in their own time. Forcing things could be critical. Likewise, if you are feeling pressure into moving your relationship to the next level, don’t allow yourself to be coerced. Take a step back and consider what you are ready for.",
"Be clear with your partner and set limits. If you are single, you may meet someone soon but the same message applies, don’t rush things. Enjoy the enthusiasm of a new relationship and take time to get to know your new love attention without piling on the force. Sometimes it’s better to just go with the flow and let things evolve at their own pace."
]
},
"card_3": {
"card_id": 25,
"card_name": "Three of Swords",
"position_key": "reverse",
"position": "Reversed",
"summary": "",
"meaning": [
"In a love Tarot reading, if you are in a relationship, the Three of Swords reversed can signify that you are moving into a period of reconciliation or pardon in the relationship. You are ready to let go of the pain or sorrow your relationship caused you in the past and to forgive and move forward. The lines of communication are once again open and your relationship has a good chance of progressing as you release the pain you have been carrying. It can also in some cases signify settlement after a breakup. Alternatively, the Three of Swords reversed can specify that you are holding onto grief, sorrow or pain unwilling to let them go.",
"Your partner may have betrayed or hurt you in the past and you are continuing to focus on this and feel unable to forgive them. If that is the case, you need to ask yourself if there is any point in continuing the relationship. Your relationship will not be able to grow while you are holding onto past indiscretions. This doesn’t mean you pretend that it never happened but you can’t keep using it as an emotional stick to beat your partner with, even if they did cause pain and sorrow in your life. You need to figure out if you can draw a line under the past and move forward together. If you can’t it may be time to let them go so you can both move on to a something better.",
"If you are single, the Three of Swords reversed can shows healing from a breakup, separation or divorce. It can also be an signify that you are coming out of a period of feeling lonely and isolated and are feeling much more hopeful about your future relationship prospects. Alternatively, the Three of Swords reversed can be a sign of an extreme level of holding onto sorrow after a bitter breakup, divorce or loss of a loved one. There is no hesitation that what you have been through has devastated you. At the same time, holding onto the pain is not going to make you feel good. You may want to consider seeking help from a healer or expert counselor to help you start the healing process."
]
}
}
}
Params | Data Type | Description | Example |
---|
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/love_tarot_reading' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '[]'
# END
/* JavaScript Request Example */
var apiEndPoint = "love_tarot_reading";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = [];
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var request = $.ajax({
url: url,
method: "POST",
dataType:'json',
headers: {
"Authorization": "Basic " + btoa(userId+":"+apiKey),
"Accept-Language": "en",
"Content-Type":'application/json'
},
data:JSON.stringify(data)
});
request.then(
function(resp){
console.log(resp);
},
function(err){
console.log(err);
}
);
/* END */
<?php
/* PHP Request Example */
$apiEndPoint = "love_tarot_reading";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url.$apiEndPoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
$header[] = 'Authorization: Basic '. base64_encode($userId.":".$apiKey);
$header[] = 'Accept-Language: en';
$header[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
$error = curl_error($ch);
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
/* END */
# Python Request Example
import requests
import json
apiEndPoint = "love_tarot_reading";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps([])
headers = {
'Accept-Language': 'en',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, auth=(userId, apiKey),data=data)
print(response.text)
# END
/* NodeJS Request Example */
var request = require('request');
var apiEndPoint = "love_tarot_reading";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var options = {
'method': 'POST',
'url': url,
'auth': {
'user': userId,
'password': apiKey
},
'headers': {
'Accept-Language': 'en',
'Content-Type': 'application/json'
},
body: JSON.stringify([])
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */