ASTROLOGY API REFERENCE DOCUMENTATION

Health Tarot Reading

Get Health Tarot Reading

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

Response Data

{
  "status_code": 200,
  "status": true,
  "data": {
    "card_1": {
      "card_id": 42,
      "card_name": "Six of Wands",
      "position_key": "reverse",
      "position": "Reversed",
      "summary": "",
      "meaning": [
        "In a health Tarot reading, the Six of Wands reversed can be a sign of poor health or a relapse of a sickness or disease or winner that you had been given the all clear on. It can also show an unsatisfactory return to sports or health after an injury or an injury caused by a fall."
      ]
    },
    "card_2": {
      "card_id": 77,
      "card_name": "Queen of Pentacles",
      "position_key": "reverse",
      "position": "Reversed",
      "summary": "",
      "meaning": [
        "In a health Tarot reading, the Queen of Pentacles reversed usually shows weight problems (either being over or underweight) or poor health. She can show that your health is suffering as you are getting so overwhelmed with responsibilities that you are forgetting to do the most basic things for yourself.",
        "Eating well, work out and getting enough rest, all tend to suffer when we are not being watchful of how we treat ourselves. You want to correct this. No matter how much you need to take care of those around you, remember, you will be no good to anyone else if you burn yourself out."
      ]
    },
    "card_3": {
      "card_id": 45,
      "card_name": "Nine of Wands",
      "position_key": "upright",
      "position": "Upright",
      "summary": "",
      "meaning": [
        "In a health Tarot reading, if you have been unwell for some time, the Nine of Wands can signify that the fight with your ill health up to now has used up most of your power. This card tells you that you want to summon the last of your potency and push forward. You will get there, just don’t give up! The Nine of Wands can also signify chronic sickness and old injuries or illnesses making a comeback."
      ]
    },
    "card_4": {
      "card_id": 66,
      "card_name": "Two of Pentacles",
      "position_key": "upright",
      "position": "Upright",
      "summary": "",
      "meaning": [
        "In a health context, the Two of Pentacles advises you to remember to balance your work life and personal life with your physical condition needs. Be sure to take time out to eat healthily and exercise. If you are starting a new healthy eating plan and fitness routine it tells you to ease yourself into these things, don’t try to do too much too soon."
      ]
    }
  }
}
JSON
Params Data Type Description Example
# cURL Request Example

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

# END
cURL
/* JavaScript Request Example */

var apiEndPoint = "health_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 = "health_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 = "health_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 = "health_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