# Horoscopes Astro Seek — 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 natal chart calculations, real-time planetary positions, and transit aspects from Astro-Seek. Retrieve detailed ephemeris data, house placements, aspect tables, and chart interpretations for any birth date, time, and location.

**Category:** Other | **Website:** [horoscopes.astro-seek.com/](https://horoscopes.astro-seek.com/) | **Docs:** [parse.bot/marketplace/eabce0ff-000c-4422-b81e-1d7159615190/horoscopes-astro-seek-com-api](https://parse.bot/marketplace/eabce0ff-000c-4422-b81e-1d7159615190/horoscopes-astro-seek-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-horoscopes-astro-seek-com-api-eabce0ff/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### current_positions

Extract all current planetary positions including zodiac signs, degrees, and retrograde status. Returns real-time positions for Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto, Lunar Nodes, Lilith, and Chiron. No parameters required — always returns current sky state.

**Estimated cost:** Metered

_No parameters required._

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

### natal_chart

Calculate a full natal chart including planet positions, houses, aspects, interpretations, and chart visualization URL. Requires birth date, time, and city for accurate calculation. City is resolved via geocoding; common city names work (e.g. 'New York', 'London', 'Paris'). Returns planets in houses, house cusps, major aspects between planets, textual interpretations of key placements, and a URL to a rendered chart image.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | Birth city name (e.g., 'New York', 'London', 'Paris') |
| `day` | integer | Yes | Birth day (1-31) |
| `hour` | integer | No | Birth hour (0-23) |
| `minute` | integer | No | Birth minute (0-59) |
| `month` | integer | Yes | Birth month (1-12) |
| `year` | integer | Yes | Birth year |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-horoscopes-astro-seek-com-api-eabce0ff/natal_chart \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","day":"<integer>","hour":"<integer>","minute":"<integer>","month":"<integer>","year":"<integer>"}'
```

### transits

Calculate transit aspects for a specific birth chart on a given transit date. Returns aspects between transiting planets and natal planets/points. Uses noon as birth time for transit calculations. City is resolved via geocoding. Transit date defaults to current UTC date when omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | Birth city name (e.g., 'New York', 'London', 'Paris') |
| `day` | integer | Yes | Birth day (1-31) |
| `month` | integer | Yes | Birth month (1-12) |
| `transit_day` | integer | No | Transit day (1-31). Omitting defaults to current UTC day. |
| `transit_month` | integer | No | Transit month (1-12). Omitting defaults to current UTC month. |
| `transit_year` | integer | No | Transit year. Omitting defaults to current UTC year. |
| `year` | integer | Yes | Birth year |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-horoscopes-astro-seek-com-api-eabce0ff/transits \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","day":"<integer>","month":"<integer>","transit_day":"<integer>","transit_month":"<integer>","transit_year":"<integer>","year":"<integer>"}'
```
