A Mindful Insight Into Your Future
On this page
When fetching result content via the API, you have two format options:
tailwindcss
in your frontend platform to render this properly.
dangerouslySetInnerHTML
in React).
Use JSON if you want to build a fully custom experience.
Use HTML if you prefer a quick and styled output with minimal integration effort.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<div id="embed_result"></div>
</body>
<script>
const data=""
document.getElementById("embed_result").innerHTML=data
</script>
</html>
The Bhavishyayaan APIs are structured around REST principles, making them easy to integrate and use with standard HTTP methods. These APIs are backed by a robust software layer that connects and optimizes global communication networks.With Bhavishyayaan, developers can build powerful applications that analyze user psychology and mental state by leveraging our intelligent data interpretation systems. Whether you're developing tools for mental health, behavioral analysis, or personalized user experiences, our APIs provide the insights and infrastructure needed to support your innovation.
Note: All API requests must include a valid API key in the request header. You will receive your unique API key from our team.
Header Format:X-API-KEY: <YOUR_API_KEY>
Note: Do not share your API key publicly. Treat it like a password!
example:
let config = {
method: 'get',
maxBodyLength: Infinity,
url: āurl_domainā,
headers: {
'X-API-KEY': 'ā¢ā¢ā¢ā¢ā¢ā¢'
}
};
axios.request(config)
.then((response) => {
// your logic here
})
.catch((error) => {
console.log(error);
});
category_id
example:
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'url_domain',
headers: {
'X-API-KEY': 'ā¢ā¢ā¢ā¢ā¢ā¢'
}
};
axios.request(config)
.then((response) => {
// your logic here
}).catch((error) => {
console.log(error);
});
category_id
test_id
example:
let config = {
method: 'get',
maxBodyLength: Infinity,
url: āurl_domainā,
headers: {
'X-API-KEY': 'ā¢ā¢ā¢ā¢ā¢ā¢'
}
};
axios.request(config)
.then((response) => {
// your logic here
})
.catch((error) => {
console.log(error);
});
test_id
uid
(Optional)
user_name
(Optional)
resultType
(Optional)
user_email
(Optional)
user_class
(Optional)
category
response
example:
hi