/v1/antiscia
API-Key noetig Berechnung Antiscia und Contra-Antiscia: Spiegelpunkte im Tierkreis.
Beschreibung
Liefert pro Body Antiscion (Spiegelung an der Solstitial-Achse 0° Krebs / 0° Steinbock, Formel (180-λ) mod 360) und Contra-Antiscion (Spiegelung an der Aequinoctial-Achse 0° Widder / 0° Waage, Formel (360-λ) mod 360). Optional Paar-Aspekte: zwei Bodies stehen "in Antiscia", wenn die Position des einen innerhalb des Orbis am Antiscion-Mirror des anderen liegt. Default-Body-Set: Sonne, Mond, klassische 8 Planeten, Mondknoten (mean+true), Lilith (mean), Chiron.
Parameter
| Name | In | Typ | Pflicht | Beschreibung |
|---|---|---|---|---|
datetime |
body | string | ja | ISO 8601 UTC, z.B. "2026-04-20T12:00:00Z". |
bodies |
body | array | nein | Liste von Body-Namen aus dem libswe-Standardkatalog. Default: 14 Standardpunkte. Unbekannte Namen werden ignoriert. |
orb |
body | number | nein | Orbis fuer Paar-Aspekte in Grad. Default 1.0, Maximum 3.0. |
include_pairs |
body | boolean | nein | Wenn false, werden nur Spiegelpunkte ohne Paar-Aspekte zurueckgegeben. Default true. |
Beispiel-Aufruf
curl -sS \
-H "X-API-Key: ak_test_<DEIN_KEY>" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"datetime": "2026-04-20T12:00:00Z",
"bodies": [
"sun",
"moon",
"mercury",
"venus",
"mars"
],
"orb": 1
}' \
"https://astroapi.services/v1/antiscia"
<?php
$ch = curl_init("https://astroapi.services/v1/antiscia");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["X-API-Key: ak_test_<DEIN_KEY>", "Content-Type: application/json"]);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"datetime":"2026-04-20T12:00:00Z","bodies":["sun","moon","mercury","venus","mars"],"orb":1}');
$response = json_decode(curl_exec($ch), true);
curl_close($ch);
print_r($response);
<?php
require 'astroapi-client.php';
$api = new AstroApiClient('ak_test_<DEIN_KEY>');
$response = $api->antiscia([
'datetime' => '2026-04-20T12:00:00Z',
'bodies' => [
'sun',
'moon',
'mercury',
'venus',
'mars',
],
'orb' => 1,
]);
print_r($response);
const response = await fetch('https://astroapi.services/v1/antiscia', {
method: 'POST',
headers: { 'X-API-Key': 'ak_test_<DEIN_KEY>', 'Content-Type': 'application/json' },
body: JSON.stringify({
"datetime": "2026-04-20T12:00:00Z",
"bodies": [
"sun",
"moon",
"mercury",
"venus",
"mars"
],
"orb": 1
}),
});
const data = await response.json();
console.log(data);
import { AstroApiClient } from './astroapi-client.js';
const api = new AstroApiClient('ak_test_<DEIN_KEY>');
const response = await api.antiscia({
"datetime": "2026-04-20T12:00:00Z",
"bodies": [
"sun",
"moon",
"mercury",
"venus",
"mars"
],
"orb": 1
});
console.log(response);
import requests
url = 'https://astroapi.services/v1/antiscia'
headers = {'X-API-Key': 'ak_test_<DEIN_KEY>'}
payload = {
"datetime": "2026-04-20T12:00:00Z",
"bodies": [
"sun",
"moon",
"mercury",
"venus",
"mars"
],
"orb": 1
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())
from astroapi_client import AstroApiClient
api = AstroApiClient('ak_test_<DEIN_KEY>')
response = api.antiscia({
'datetime': '2026-04-20T12:00:00Z',
'bodies': [
'sun',
'moon',
'mercury',
'venus',
'mars',
],
'orb': 1,
})
print(response)