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

Astro Chic Picks API

Welcome to the Astro Chic Picks API, your gateway to delivering personalized, fashion-forward recommendations inspired by astrology. Designed for businesses and developers catering to style-conscious and astrology-loving audiences, this API combines the cosmic charm of zodiac traits with current astrological alignments to curate bespoke fashion guides.


Step by Step Astro Chic Picks API Postman Testing Integration

Step by Step Astro Chic Picks API Postman Testing Integration


Supported Language Codes

Use the lan parameter in the request body to define your preferred response language.

CodeLanguage
enEnglish
hiHindi
ptPortuguese
frFrench
deGerman
jaJapanese
trTurkish
ruRussian
itItalian
esSpanish
nlDutch
plPolish

Guide:
These languages are supported by this API. You can use them by passing "lan" in the request body with the value of the language.


API Endpoint

POST https://astroapi-7.divineapi.com/api/v1/astro-chic-picks

Headers

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

Request Body

NameTypeDescription
api_key*StringYour DivineAPI Key (available in your dashboard).
sign*StringZodiac sign (e.g., Aries).
h_day*StringDay context (yesterday, today, tomorrow).
tzone*FloatTimezone (e.g., 5.5). Refer to the Timezone List.
lanStringLanguage code (default: en). How to update translator.

200: OK Fetched Astro Chic Picks Successfully

{
    "status": "success",
    "code": 200,
    "message": "Request was successful",
    "data": {
        "sign": "Aries",
        "date": "15 Jan 2025",
        "gift_suggestions": {
            "Augmented Reality Pet Toy": "This innovative toy engages pets in interactive play using augmented reality, perfect for keeping their minds active while responding to the adventurous Aries spirit and the curious energy brought by the Moon Sextile Uranus transit.",
            "Smart Indoor Garden Kit": "This tech-savvy garden kit allows a busy Aries to grow herbs and plants with ease, aligned with the nurturing vibe of Venus in Pisces and promotes mindfulness during the Full Moon phase.",
            "Portable Projector": "Ideal for an Aries who loves to host gatherings or enjoy solo movie nights, this portable projector brings bold experiences home, resonating with the dynamic energy of active Mars and the ongoing Jupiter retrograde encouraging unique perspectives."
        },
        "insight": "Aries, known for their bold, adventurous nature and love for new experiences, will appreciate gifts that offer excitement and interaction. The Moon Sextile Uranus transit boosts creativity and curiosity, making an Augmented Reality Pet Toy or a Portable Projector fitting for their love of new technologies. Moreover, a Smart Indoor Garden Kit aligns with the calming influence of Venus in Pisces and helps channel their abundant energy towards nurturing pursuits, harmonizing with the reflective Full Moon phase. These gifts support Aries' dynamic lifestyle and encourage exploration even during retrograde periods."
    }
}

Example Code Implementations

Below are example implementations in various programming environments.


cURL

curl --location '
https://astroapi-7.divineapi.com/api/v1/astro-chic-picks\
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'sign="Aries"' \
--form 'h_day="today"' \
--form 'tzone="5.5"' \
--form 'lan="en"'

NodeJS

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://astroapi-7.divineapi.com/api/v1/astro-chic-picks',
  'headers': {
    'Authorization': 'Bearer {Your Auth Token}'
  },
  formData: {
    'api_key': '{Your API Key}',
    'sign': 'Aries',
    'h_day': 'today',
    'tzone': '5.5',
    '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("sign", "Aries");
form.append("h_day", "today");
form.append("tzone", "5.5");
form.append("lan", "en");

var settings = {
  "url": "https://astroapi-7.divineapi.com/api/v1/astro-chic-picks",
  "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-7.divineapi.com/api/v1/astro-chic-picks"

payload = {'api_key': '{Your API Key}',
'sign': 'Aries',
'h_day': 'today',
'tzone': '5.5',
'lan': 'en'}

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

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

print(response.text)

Implementation Notes

Authentication:
Include a valid Bearer token in all API requests to ensure secure and authorized access.

Dynamic Styling Recommendations:
The API considers zodiac energies, transits, and planetary aspects to generate fashion suggestions aligned with current cosmic influences.

Customization:
Input parameters like sign, h_day, and lan can be dynamically modified to tailor results to specific users and locales.

Integration Tip:
Ideal for lifestyle, fashion, and e-commerce apps to personalize user experiences and improve engagement through astrology-driven recommendations.