Introduction

The OracleEyes API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

Authentication

Authenticate your account when using the API by including your secret API key in the request. Manage your API keys in your automated Oracle Dashboard. Your API keys carry many privileges, so be sure to keep them secure.

Authorization: Bearer sk_test_oracleeyes_api_key_EXAMPLE

Predict Destiny

Calculates the absolute probability of karmic events over an 18-month horizon based on standard Bazi inputs and planetary transits.

POST https://api.oracleeyes.io/v1/destiny

Parameters

name string Required.
Target subject name
date_of_birth string Required.
Format: YYYY-MM-DD
time_of_birth string Optional.
Format: HH:MM
location string Required.
City, Country format

Example Request

curl -X POST https://api.oracleeyes.io/v1/destiny \ -H "Authorization: Bearer sk_test_123" \ -H "Content-Type: application/json" \ -d '{ "name": "Satoshi N.", "date_of_birth": "1975-04-05", "location": "Tokyo, Japan" }'

Example Response

{ "id": "dst_8ak10z", "object": "destiny_prediction", "karmic_score": 94.2, "major_transit": "Wealth Expansion Phase", "accuracy_confidence": 0.981 }

Love Compatibility

Cross-references two individuals' charts to determine synaptic alignment and long-term friction metrics.

POST https://api.oracleeyes.io/v1/love-compatibility

Parameters

person_1_id string Required.
Profile ID of subject A
person_2_id string Required.
Profile ID of subject B

Example Response

{ "id": "cmp_49x81a", "compatibility_score": 88.5, "friction_points": [ "Communication styles differ", "Financial risk tolerance" ] }

Ready to predict the future?

Generate a test API key to try the Neural Oracle in your environment immediately.