ASTROLOGY API REFERENCE DOCUMENTATION

Spiritual Tarot Reading

Get Spiritual Tarot Reading

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

Response Data

{
  "status_code": 200,
  "status": true,
  "data": {
    "card_1": {
      "card_id": 58,
      "card_name": "Eight of Cups",
      "position_key": "upright",
      "position": "Upright",
      "summary": "This is the background of your reading, shows you what the prime focus is, what region is of mainly worry currently.",
      "meaning": [
        "In a spiritual context, the Eight of Cups show that you may be taking a journey of self-discovery. You could find yourself doing a lot of soul-searching and introspection when this Minor Arcana card appears in your Tarot reading. You could search yourself abandoning old spiritual faith in your search for your own spiritual way."
      ]
    },
    "card_2": {
      "card_id": 18,
      "card_name": "The Star",
      "position_key": "upright",
      "position": "Upright",
      "summary": "This card tells what your motivations are, why you are forced to do some things, etc. it is your drive.",
      "meaning": [
        "In a spiritual context, The Star is a great prognostic. It shows that you will be very in tune with the spirit world. If you are interested in psychic growth, you may find that you come on in leaps and bounds with the Star in your Tarot reading. It’s also a great time to get involved in energy or healing work as you should be very open to remedial at the moment."
      ]
    },
    "card_3": {
      "card_id": 61,
      "card_name": "Page of Cups",
      "position_key": "upright",
      "position": "Upright",
      "summary": "This is the card that specifies difficulties and apprehensions that you have to deal with and remove. This may be your hidden hurdles to your growth.",
      "meaning": [
        "In a spiritual context, the Page of Cups is a good card to get as it can signify emerging intuition or psychic abilities. You may find that spirit is sending you some very optimistic messages when this card appears. You should be very in tune with your inner voice. Pay attention to your thoughts as they may contain psychic messages."
      ]
    },
    "card_4": {
      "card_id": 75,
      "card_name": "Page of Pentacles",
      "position_key": "upright",
      "position": "Upright",
      "summary": "This card shows you what you have to concentrate on that you are not know or that you are not seeing completely now. Its intention is to assist you obtain some perception and is mostly a surprise.",
      "meaning": [
        "In a spiritual context, the Page of Pentacles can show that you are seeking to further your spiritual knowledge. You may be raising your powers of divination or studying the Tarot. Or you may find yourself experimenting with earth magic or nature religions such as Paganism or Wicca. Now is a good time to educate yourself in spiritual ways that will stand to you in the future."
      ]
    },
    "card_5": {
      "card_id": 42,
      "card_name": "Six of Wands",
      "position_key": "upright",
      "position": "Upright",
      "summary": "This card is an action plan that concentrates on the finest path to advance from here, how to utilize the suggestion specified in the earlier positions to your advantage.",
      "meaning": [
        "In a spiritual context, the Six of Wands sees people looking to you for way. Assist those that you can help as you have the management character required in sufficiency. Make sure you still make time for your own ongoing spiritual journey. Don’t let the notice go to your head."
      ]
    }
  }
}
JSON
Params Data Type Description Example
# cURL Request Example

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

# END
cURL
/* JavaScript Request Example */

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