Made For Each Other Or Not
Introducing the Made For Each Other Or Not API, a powerful tool to assess and analyze compatibility between individuals. With this API, effortlessly determine the potential for harmonious connections and compatibility, enhancing matchmaking and relationship services.
Step by Step Made For Each Other Or Not API Postman Testing Integration
Step by Step Made For Each Other Or Not API Postman Testing Integration
API Endpoint for English
POST https://astroapi-5.divineapi.com/api/v3/made-for-each-other-or-not-readingGuide: If you only need English, use this endpoint.
API Endpoint for other languages
POST https://astroapi-5-translator.divineapi.com/api/v3/made-for-each-other-or-not-readingGuide: If you want the response in any other language use this translator endpoint.
Supported Language Codes
Use the lan parameter in the request body to define your preferred response language.
Supported Reference Article:
https://support.divineapi.com/general-api-support/translating-apis-into-a-different-language
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| zh | Chinese |
| ja | Japanese |
| ar | Arabic |
| ru | Russian |
| pt | Portuguese |
| es | Spanish |
| fr | French |
| de | German |
| it | Italian |
| nl | Dutch |
| pl | Polish |
| tr | Turkish |
| uk | Ukrainian |
| hu | Hungarian |
| gr | Greek |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
| ta | Filipino/Tagalog |
| bah | Indonesian |
Guide: Ensure that your translator configuration is up to date via DivineAPI Translator.
Headers
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
Request Body
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI Key (available in your dashboard). |
| lan | String | Language code (default: en). How to update translator. |
| cards_count | Integer | Number of cards to display, eg: 1 (Allowed: 1/2/3/4/5, Default: 1) |
| card_image | Integer | Card image UI type, eg: 1 (Allowed: 1/2/3, Default: 1) |
200: OK Successful
{
"success": 1,
"data": {
"prediction": {
"card": "THE SUN",
"result": "As you bask in the glow of your dream relationship, it's important to take a moment to appreciate all that it brings to your life. From the excitement of new experiences to the warmth of companionship, your relationship is exactly what you hoped for and more.\r\n\r\nAs you begin to share your thoughts and feelings with your partner, it's important to approach each interaction with an open mind and a positive outlook. The Sun card represents joy and optimism, and it's crucial not to let small disappointments derail your positive energy. Instead, focus on the bigger picture and the many blessings that your relationship brings.\r\n\r\nIt's important to acknowledge that no relationship is perfect. Everyone has flaws and imperfections, and it's essential to accept them as a natural part of the human experience. While it's not helpful to deny the flaws of another person, it's also important not to dwell on them excessively. Instead, focus on the positive aspects of your relationship and work together to build a strong foundation based on mutual trust and respect.\r\n\r\nAs you continue to navigate your dream relationship, remember to stay true to yourself and your values. Communicate openly and honestly with your partner, and be willing to compromise and work through challenges together. With the right attitude and approach, your dream relationship can become a beautiful reality that brings joy, fulfillment, and happiness to your life.",
"image": "https://divineapi.com/admin/uploads/tarot_friend_or_foe/20.png",
"image2": "https://divineapi.com/admin/uploads/tarot_friend_or_foe/20_2.jpg",
"image3": "https://divineapi.com/admin/uploads/tarot_friend_or_foe/20_3.jpg"
}
}
}Example Code Implementations
Below are example implementations in various programming environments.
cURL
curl --location 'https://astroapi-5.divineapi.com/api/v2/made-for-each-other-or-not-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/v3/made-for-each-other-or-not-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/v3/made-for-each-other-or-not-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/v3/made-for-each-other-or-not-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)