Introducing the 'Which Animal Are You Reading' API, a fun and engaging tool that assigns users an animal based on their reading preferences. Easily integrate this playful feature into your website and applications, providing users with entertaining insights into their reading habits.
POST https://divineapi.com/api/1.0/get_which_animal_are_you_reading.php
Returns Which Animal Are You Reading in response
Request Body
Name
Type
Description
api_key*
String
Your API Key (can be found on your Divineapi dashboard)
name*
String
Your Name
dob*
Date
Your Date of Birth (eg: 2020-12-25)
{
"success":1,
"message":"Which Animal Are You Reading Result.",
"data":{
"birth_number":"6",
"result":"As you continue to
read, you may discover that the resilient Crow is your inner animal. This means that you are someone who will likely
experience major changes on a regular basis throughout your life. Whether it's moving to a new city, starting a new job,
or embarking on a new relationship, you are constantly evolving and growing.\r\n\r\nIt can be difficult to let go of the
past or to cling to the familiar, but transformation is inevitable. Acceptance and adaptability are key to turning even
the most challenging situations in your favor. Remember that with every change, there is an opportunity for growth and a
chance to embrace new experiences.\r\n\r\nAt times, you may struggle with difficult relationships. It's important to
remember that this is a normal part of your journey and can help you stay on your life path. By remaining open to all
possibilities, you will eventually find a long-lasting, stable, and rewarding partnership.\r\n\r\nIt's also important to
recognize that resilience is not just about bouncing back from difficult situations, but also about learning and growing
from them. Embrace the challenges that come your way as opportunities to learn and become a stronger, more resilient
version of yourself.\r\n\r\nIn order to fully embody your inner Crow, it's important to embrace change, remain
adaptable, and remain open to all possibilities. By doing so, you will be able to navigate the ups and downs of life
with grace and resilience. Remember, no matter what life throws your way, you have the strength and resilience to
overcome it.",
"image":"https:\/\/divineapi.com\/admin\/uploads\/tarot-inner-animal\/6.png",
"animal":"Crow (Death)"
}
}
curl --location 'https://divineapi.com/api/1.0/get_which_animal_are_you_reading.php' \
--form 'api_key="Your divine api key"'
ar request = require('request');
var options = {
'method': 'POST',
'url': 'https://divineapi.com/api/1.0/get_which_animal_are_you_reading.php',
'headers': {
},
formData: {
'api_key': 'Your divine api key'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "Your divine api key");
var settings = {
"url": "https://divineapi.com/api/1.0/get_which_animal_are_you_reading.php",
"method": "POST",
"timeout": 0,
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});