Copy page
Copy page as Markdown for LLMs
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
Use the lan field in the request body to specify the response language.
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| pt | Portuguese |
| fr | French |
| es | Spanish |
| ru | Russian |
| de | German |
| nl | Dutch |
| it | Italian |
| pl | Polish |
| ar | Arabic |
| ja | Japanese |
| zh | Chinese |
| tm | Tamil |
| tl | Telugu |
| tr | Turkish |
| ta | Filipino/Tagalog |
| bn | Bengali |
| ma | Marathi |
| ml | Malayalam |
| kn | Kannada |
Guide:
For multilingual implementations, configure your translation settings using the DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/career-daily-reading
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI key, available on your developer dashboard. |
| lan | String | Language code as per the table above. Default is en. |
{
"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"
}
}
}Below are example implementations in various programming environments.
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"'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);
});
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);
});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)