Get Finance Tarot Reading
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/finance_tarot_reading |
{
"status_code": 200,
"status": true,
"data": {
"card_1": {
"card_id": 18,
"card_name": "The Star",
"position_key": "reverse",
"position": "Reversed",
"summary": "This card is related to your current financial status and shows your present relation to finance.",
"meaning": [
"In a career Tarot spread, The Star reversed shows that you may be feeling bored in your career or feel that you are stuck in a career that is going nowhere. Monotony has set in and you no longer feel the creative spark or eagerness you once had. You want to change your attitude and start focusing on the positive. Things are not as bad as they seem and anything you are sad with is within your power to change. The Star inverted can also signify that you are not using your creativity and are letting your talents go to waste.",
"In a monetary context, if your finances have not been going well, The Star reversed tells you that any troubles are within your power to change. Reconsider your financial plans in light of any current changes in your situation and ask yourself are these plans still working for you and will they get you what you want? If not, look at what you can do to change them to suit your current situation. Don’t let concern over money overwhelm you, it’s not all doom and gloom! Things are not as awful as you think they are."
]
},
"card_2": {
"card_id": 75,
"card_name": "Page of Pentacles",
"position_key": "upright",
"position": "Upright",
"summary": "This card is related to past effects of your relation with money. It also shows how your past has made your thinking and approach about money.",
"meaning": [
"In a career Tarot reading, the Page of Pentacles is an outstanding omen signifying great news. It indicates putting in the foundation to achieve success, setting goals and deciding what you need and going for it. Whether you’re self-employed or working for someone else or looking for work when it appears, this card tells you that occasions are available to you and you should clutch them with both hands.",
"It can also show that you may be seeking further education or if you are already enrolled in a course that you will excel at it if you put the effort in. In a financial context, the Page of Pentacles also indicates good financial news usually in the form of rewards for hard work. It also signifies putting things in place to secure your financial future. If you have been looking at buying a home or waiting to see if an offer on a property will be accepted, things should go in your favor."
]
},
"card_3": {
"card_id": 45,
"card_name": "Nine of Wands",
"position_key": "upright",
"position": "Upright",
"summary": "This card is related to the action you need to do to adjust your current financial status with both the spiritual and emotional changes.",
"meaning": [
"In a career Tarot spread the Nine of Wands shows ongoing fights, insistence and fighting through the tough times. The reality of the work you have taken on may be hitting home when this card show in your Tarot reading as the Nine of Wands signifies that you are mid-way through a fight. The previous work you have set in may have left you tired and wondering if you have sufficient energy to complete the task at hand.",
"This Minor Arcana card tells you to fight on as you will find achievement. In a financial Tarot reading, the Nine of Wands can be a sign of that you may be having a bit of a difficult time in terms of money. You may have had a lot of unforeseen expenses recently that have left you a little strapped for cash. If you have savings, you may desire to consider dipping into them to see you through. If you don’t have savings, try not to worry. Look at ways you can make a little extra side money until things get better. The Nine of Wands can also indicate guarding your money so you may want to be a bit security conscious about cash and valuables when this appears."
]
}
}
}
Params | Data Type | Description | Example |
---|
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/finance_tarot_reading' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '[]'
# END
/* JavaScript Request Example */
var apiEndPoint = "finance_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 = "finance_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 = "finance_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 = "finance_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 */