POST
/v1/astrology/birth_details

Birth Details

Get basic birth chart details including ascendant, moon sign, sun sign, and nakshatra.

Response Example

{
  "message": "Detailed endpoint documentation is available in progress. Validate request/response in Swagger UI for live schema."
}

Code Examples

cURL
curl -X POST 'https://api.astro-fusion.com/v1/astrology/birth_details' \
  -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/v1/astrology/birth_details', {
  method: 'POST',
  headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
Python
import requests

response = requests.post('https://api.astro-fusion.com/v1/astrology/birth_details', headers={'Authorization': 'Bearer YOUR_API_KEY'})