ASTROLOGY API REFERENCE DOCUMENTATION

Career Tarot Reading

Get Career Tarot Reading

API Endpoint
career_tarot_reading
Method & Url
MethodFull Url
POSThttps://json.apireports.com/v1/career_tarot_reading

Response Data

{
  "status_code": 200,
  "status": true,
  "data": {
    "card_1": {
      "card_id": 38,
      "card_name": "Two of Wands",
      "position_key": "reverse",
      "position": "Reversed",
      "summary": "",
      "meaning": [
        "In a career Tarot spread, the Two of Wands reversed signifies that you may be limiting or restricting your choices or options in a work context. This Minor Arcana card indicates that you may have taken the safe option in your career and are now wishing you had been more daring. If you are in business, a decision you made may not have worked out well.",
        "A partnership or growth may not have worked in your favors. In a financial Tarot reading, the Two of Wands reversed represents financial instability. You may be struggling to find your monetary balance when it appears."
      ]
    },
    "card_2": {
      "card_id": 13,
      "card_name": "The Hanged Man",
      "position_key": "reverse",
      "position": "Reversed",
      "summary": "",
      "meaning": [
        "In a work context, The Hanged Man reversed Tarot card show that things may not be going well but you have neither the will nor leaning to deal with the issues involved. You may be resorting to blaming others or feeling like you are powerless to change your circumstances. Now is the time to take back control of your career.",
        "Figure out what you want and go for it, don’t be a passenger in your own life especially if it’s not taking you where you want to go. Monetarily, this Major Arcana card can indicate that you are paralyzed by your fear of financial hardship. If you are struggling to cope financially, consider seeking financial advice from an expert. A fresh perspective might be all you want to get things moving in the right direction."
      ]
    },
    "card_3": {
      "card_id": 23,
      "card_name": "Ace of Swords",
      "position_key": "upright",
      "position": "Upright",
      "summary": "",
      "meaning": [
        "In a career Tarot increase, the Ace of Swords can signify getting a new job, promotion or project which will provide you with a provocative environment or mentally inspiring people to bounce your thoughts off. It can also signify a time in your profession or work life where you will be brainstorming or coming up with new ideas and communicating them to your the allies or team or taking charge of a new venture with vision and focus.",
        "It is also a card of success, triumph and achievement so it is a good business sign if you are starting a new project or business. In a financial Tarot increase, the Ace of Swords tells you not to let your heart over rule your head at the moment in terms of money. Don’t make financial verdict based on emotional influences. For example, if a friend asks you to invest in their business or lend them money, this card tells you to use your head and not to let your emotional attachments canceled your financial or business sense. It could end up costing you more than the amount of money you spend or loan."
      ]
    }
  }
}
JSON
Params Data Type Description Example
# cURL Request Example

curl --location --request POST 'https://json.apireports.com/v1/career_tarot_reading' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '[]'

# END
cURL
/* JavaScript Request Example */

var apiEndPoint = "career_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 */
JavaScript
<?php
/* PHP Request Example */

$apiEndPoint = "career_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 */
PHP
# Python Request Example

import requests
import json

apiEndPoint = "career_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
Python
/* NodeJS Request Example */

var request = require('request');
var apiEndPoint = "career_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 */
NodeJS

Astrology API Reports in News