# Astro — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access astrological data including zodiac sign characteristics, real-time planetary positions, current celestial aspects, and general weekly horoscopes. Retrieve personality traits, compatibility information, and cosmic event summaries sourced from Astro.com.

**Category:** Other | **Website:** [astro.com/](https://astro.com/) | **Docs:** [parse.bot/marketplace/f183ef9f-78a9-4b82-bfa4-12e56be12f98/astro-com-api](https://parse.bot/marketplace/f183ef9f-78a9-4b82-bfa4-12e56be12f98/astro-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-astro-com-api-f183ef9f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_aspects

Get current astrological aspects and celestial events summary.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-astro-com-api-f183ef9f/get_aspects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_general_horoscope

Get the general weekly astrological horoscope with predictions and advice for the current period. Returns the weekly tendencies text from Astro.com including the horoscope title and content paragraphs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-astro-com-api-f183ef9f/get_general_horoscope \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_planetary_positions

Get current real-time planetary positions in the zodiac, including degree, sign, arc minutes, and declination for each celestial body. Returns positions for Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto, TrueNode, and Chiron.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-astro-com-api-f183ef9f/get_planetary_positions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_sign_characteristics

Get comprehensive zodiac sign characteristics including personality traits, strengths, weaknesses, and compatibility information. Returns a meta description summary plus multiple paragraphs of personality description from Liz Greene's characterizations on Astro.com.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sign` | string | Yes | Zodiac sign name. Accepted values: Aries, Taurus, Gemini, Cancer, Leo, Virgo, Libra, Scorpio, Sagittarius, Capricorn, Aquarius, Pisces. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-astro-com-api-f183ef9f/get_sign_characteristics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sign":"<string>"}'
```
