search

Copy page

Copy page as Markdown for LLMs

View as Markdown

View this page as plain text


Open in ChatGPT

Ask ChatGPT about this page

Open in Claude

Ask Claude about this page

Career Daily Reading API

Introducing the Career Daily Reading API, a powerful tool that delivers daily career insights and guidance to help users navigate their professional journeys. This API allows seamless integration of tarot-based career predictions into your platforms, empowering individuals to make informed decisions about work, growth, and balance.


Step by Step Career Daily Reading API Postman Testing Integration

Step by Step Career Daily Reading API Postman Testing Integration


Supported Language Codes

Use the lan field in the request body to specify the response language.

CodeLanguage
enEnglish
hiHindi
ptPortuguese
frFrench
esSpanish
ruRussian
deGerman
nlDutch
itItalian
plPolish
arArabic
jaJapanese
zhChinese
tmTamil
tlTelugu
trTurkish
taFilipino/Tagalog
bnBengali
maMarathi
mlMalayalam
knKannada

Guide:
For multilingual implementations, configure your translation settings using the DivineAPI Translator.


API Endpoint

POST https://astroapi-5.divineapi.com/api/v2/career-daily-reading

Headers

NameTypeDescription
Authorization*StringYour API Access Token. Example: Bearer {token}

Request Body

NameTypeDescription
api_key*StringYour DivineAPI key, available on your developer dashboard.
lanStringLanguage code as per the table above. Default is en.

200: OK Successful

{
    "success": 1,
    "data": {
        "prediction": {
            "card": "TEMPERANCE",
            "result": "When the Temperance card appears in a reading, it can be a powerful symbol of finding balance and harmony in your work life. This card signifies a period of time where you can successfully combine many of your different qualities into one cohesive whole, and create a more fulfilling and satisfying work experience.\r\n\r\nDuring this time, it's important to remember that finding balance isn't just about being successful in your career; it's also about finding a way to apply the qualities you have learned in your professional life to your personal life as well. By doing so, you can create a more holistic and fulfilling experience that benefits all aspects of your life.\r\n\r\nOne way to approach this is by looking for ways to integrate your different qualities and talents into your work. For example, if you are someone who is naturally creative, you might try to find ways to incorporate this creativity into your work projects or team collaborations. Or, if you are someone who is highly analytical, you might look for opportunities to apply this analytical approach to problem-solving in your work.\r\n\r\nAt the same time, it's important to remember that finding balance also means recognizing and respecting your own limitations. This might mean setting boundaries and saying no to tasks or projects that don't align with your values or priorities, or taking time for self-care and rest when you need it.\r\n\r\nUltimately, the Temperance card reminds us that finding balance and harmony in our work life is an ongoing process, and one that requires patience, perseverance, and a willingness to adapt and change as needed. By embracing this process and staying committed to our own growth and development, we can create a more fulfilling and satisfying work life that benefits both ourselves and those around us.",
            "image": "https://divineapi.com/admin/uploads/tarot_daily_career/15.png",
            "image2": "https://divineapi.com/admin/uploads/tarot_daily_career/15_2.jpg",
            "image3": "https://divineapi.com/admin/uploads/tarot_daily_career/15_3.jpg"
        }
    }
}

Example Code Implementations

Below are example implementations in various programming environments.


cURL

curl --location 'https://astroapi-5.divineapi.com/api/v2/career-daily-reading' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'lan="en"'

NodeJS

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://astroapi-5.divineapi.com/api/v2/career-daily-reading',
  'headers': {
    'Authorization': 'Bearer {Your Auth Token}'
  },
  formData: {
    'api_key': '{Your API Key}',
    'lan': 'en'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});


JavaScript jQuery AJAX

var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("lan", "en");

var settings = {
  "url": "https://astroapi-5.divineapi.com/api/v2/career-daily-reading",
  "method": "POST",
  "timeout": 0,
  "headers": {
    "Authorization": "Bearer {Your Auth Token}"
  },
  "processData": false,
  "mimeType": "multipart/form-data",
  "contentType": false,
  "data": form
};

$.ajax(settings).done(function (response) {
  console.log(response);
});

Python

import requests

url = "https://astroapi-5.divineapi.com/api/v2/career-daily-reading"

payload = {'api_key': '{Your API Key}',
'lan': 'en'}

headers = {
  'Authorization': 'Bearer {Your Auth Token}'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)