§ API REFERENCE · PROOF PROTOCOL · v1.0
ORBITAL intelligence,
oracle receipts, and
Living Instrument issuance
as API calls.
28 endpoints. The intelligence layer for capital formation.
The oracle has skin in the game on every staked call.
$CRED burns when ORBITAL's recommendations prove wrong.
The receipt chain is the proof. The ledger records everything.
Base URL: https://orbital-idea-factory.aroessner1.workers.dev
● ORBITAL running · 87.6% accuracy
Rate schedule →
AUTHAuthentication
Authentication — X-API-KEY header
Header
X-API-KEY: pk_proof_your_key_here
API keys are issued on intake approval. Apply via the company intake form.
Some endpoints are public and require no authentication: /oracle/verify, /intelligence/evidence (read-only, rate limited).
Keys are scoped to tiers: Starter (100/mo), Growth (1,000/mo), Enterprise (unlimited). See rate schedule §6.0.
Some endpoints are public and require no authentication: /oracle/verify, /intelligence/evidence (read-only, rate limited).
Keys are scoped to tiers: Starter (100/mo), Growth (1,000/mo), Enterprise (unlimited). See rate schedule §6.0.
QSQuick start
// Submit a company for ORBITAL analysis
// Returns: method recommendation, comparable projects, compliance path
// Oracle stakes $CRED against this recommendation before outcome is known
const analysis = await fetch('https://orbital-idea-factory.aroessner1.workers.dev/api/v1/intelligence/analysis', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-KEY': 'pk_proof_your_key_here'
},
body: JSON.stringify({
company_name: 'Puro Earth Carbon Credits SA',
asset_class: 'carbon_credits',
source_jurisdiction: 'us-de',
estimated_value_usd: 10000000,
target_markets: ['sg', 'ae-adgm'],
description: 'Tokenized carbon credit instrument for institutional investors'
})
});
const result = await analysis.json();
// result.method_recommended: 'yield_stripping'
// result.genesis_score: 85
// result.method_success_rate: 71%
// result.receipt_id: '9ff11299-...' (anchored before this conversation)
# No API key required. Verification is always free and public.
curl https://orbital-idea-factory.aroessner1.workers.dev/api/v1/oracle/verify \
-G -d "receipt_id=9ff11299-d15c-48ba-b088-EXAMPLE"
# Returns:
# {
# "valid": true,
# "prediction_hash": "sha256:f133706c...",
# "anchored_at": "2026-03-17T03:00:00Z", ← before outcome was known
# "chain_position": 12,
# "oracle_accuracy_at_anchor": "87.6%"
# }
§ 1.0Oracle-staked · $500/run
INTELLIGENCE LAYER
POST
/intelligence/analysis
Quick ORBITAL analysis
$CRED staked
$500 / run
Run ORBITAL's 8-agent deliberation round on a company or deal. Returns method recommendation, 3 comparable projects from the evidence base, optimal compliance path, and a genesis score (0-100). The oracle stakes $CRED against this recommendation before the outcome is known. The receipt is anchored to Solana. 30-minute SLA.
Request body
| Parameter | Type | Required | Description |
|---|---|---|---|
| company_name | string | required | Legal name of the company or issuer |
| asset_class | string | required | Asset class (see reference: 17 supported) |
| source_jurisdiction | string | required | Jurisdiction ID (e.g. us-de, fr, ae-adgm) |
| estimated_value_usd | number | required | Estimated instrument value in USD |
| target_markets | array | optional | Target investor jurisdiction IDs |
| description | string | optional | Deal description for ORBITAL context |
{
"receipt_id": "9ff11299-d15c-48ba-b088-8b6d44de6d3a",
"genesis_score": 85,
"method_recommended": "yield_stripping",
"method_success_rate": 71,
"comparable_projects": ["puro-earth", "gold-standard-vc", "verra-registry"],
"compliance_path_cost_usd": 2000,
"compliance_path_days": 1,
"oracle_stake_cred": 71,
"prediction_hash": "sha256:f133706c4d40b88a678cf09a...",
"anchored_at": "2026-03-17T19:30:00Z",
"anchor_chain": "PENDING_KEYPAIR"
}
POST
/intelligence/genesis
Full GENESIS deliberation
$CRED staked
0.05% of value
Full GENESIS run. 21 legal documents generated. Compliance tensor computation across 26 jurisdictions. Red Team adversarial scoring. Strategy artifacts, lawpack package, and complete tensor path. Requires A or B grade from /analysis. This replaces what law firms charge $50–100k for.
Request body
| Parameter | Type | Required | Description |
|---|---|---|---|
| analysis_receipt_id | string | required | Receipt ID from a passing /analysis call (grade A or B) |
| deal_name | string | required | Canonical deal name for artifact generation |
| spv_jurisdiction | string | optional | Override SPV jurisdiction (defaults to optimal from path) |
| target_raise_usd | number | optional | Precise raise target (used for fee computation) |
{
"genesis_receipt_id": "77ec9efa-c53f-45fe-b201-...",
"documents_generated": 21,
"genesis_score": 94.1,
"grade": "A",
"method_recommended": "yield_stripping",
"tensor_path": ["us-de", "ky", "ae-adgm"],
"path_cost_usd": 3000,
"lawpack_url": "https://proof.xyz/lawpacks/genesis-XXXXX.zip",
"fee_charged_usd": 5000
}
GET
/intelligence/evidence
Query evidence base
$0.10 / query
Query the ORBITAL evidence base directly. 229 verified comparable outcomes across 17 asset classes and 26 jurisdictions. Returns method success rates, failure patterns, and ranked comparable projects. Available to law firms and banks as a standalone subscription.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| asset_class | string | optional | Filter by asset class |
| jurisdiction | string | optional | Filter by jurisdiction ID |
| method | string | optional | Filter by tokenization method |
| min_success_rate | number | optional | Minimum method success rate (0-100) |
| limit | integer | optional | Results per page (default: 10, max: 100) |
POST
/intelligence/corridor
Compute compliance path
$100 / computation
Compute optimal compliance path between any two jurisdictions using Dijkstra's algorithm on the 26-node regulatory tensor. 106 corridors. Returns full path, cost, time estimate, per-hop credential requirements. Banks run this before every cross-border deal.
Request body
| Parameter | Type | Required | Description |
|---|---|---|---|
| source | string | required | Source jurisdiction ID |
| target | string | required | Target jurisdiction ID |
| asset_class | string | optional | Asset class (affects corridor weights) |
§ 3.0Oracle receipts · Always free to verify
ORACLE LAYER
GET
/oracle/verify
Verify receipt in chain
Free · always
Verify any receipt exists in a valid hash-linked chain without revealing deal contents. Returns prediction hash, chain validity, inclusion proof, and oracle accuracy at time of issuance. No authentication required. This is the public audit function. The proof that the prediction preceded the outcome.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| receipt_id | string | required | UUID of the receipt to verify |
{
"valid": true,
"receipt_id": "9ff11299-d15c-48ba-b088-8b6d44de6d3a",
"prediction_hash": "sha256:f133706c4d40b88a678cf09a...",
"chain_valid": true,
"chain_position": 12,
"anchored_at": "2026-03-17T19:30:00Z",
"anchor_chain": "PENDING_KEYPAIR",
"oracle_accuracy_at_anchor": "87.6%",
"anchored_to_solana": null,
"inclusion_proof": "sha256:c8e2d1a4..."
}
REFReference
ASSET CLASSES — 17 SUPPORTED
| ID | Name | Best method | Success rate | Evidence count |
|---|---|---|---|---|
| real_estate | Real Estate | fractionalization | 87% | 8 |
| treasuries | Treasuries / T-Bills | nav_tracking | 100% | 7 |
| carbon_credits | Carbon Credits | yield_stripping | 71% | 7 |
| private_credit | Private Credit | revenue_participation | 71% | 7 |
| funds | Funds / NAV | nav_tracking | 100% | 5 |
| equine | Equine / Horses | nav_tracking | 50% | 6 |
| defi_yield | DeFi Yield Strip | yield_stripping | 100% | 4 |
| infrastructure | Infrastructure | revenue_participation | 50% | 4 |
| maritime | Maritime | none | 0% | 9 |
JURISDICTIONS — 26 NODES IN TENSOR
| ID | Jurisdiction | Legal system | Path cost (typical) |
|---|---|---|---|
| us-de | Delaware, USA | Common Law | $2,000 |
| ky | Cayman Islands | Common Law | $1,000 |
| ae-adgm | ADGM, Abu Dhabi | English Common Law | $2,000 |
| sg | Singapore | Common Law | $8,000 |
| fr | France | Civil Law | $13,000 |
| hn-prospera | Próspera ZEDE | Common Law (RCLC) | $11,000 |
| gb | United Kingdom | Common Law | $11,000 |
| ch | Switzerland | Civil Law | $15,000 |
| ae-difc | DIFC, Dubai | English Common Law | $3,000 |