§ 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.
QSQuick start
First call — analyze a company in 30 minutes
JavaScript / Node
// 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)
Verify a receipt — prove the prediction preceded the outcome
cURL · public · no auth
# 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
ParameterTypeRequiredDescription
company_namestringrequiredLegal name of the company or issuer
asset_classstringrequiredAsset class (see reference: 17 supported)
source_jurisdictionstringrequiredJurisdiction ID (e.g. us-de, fr, ae-adgm)
estimated_value_usdnumberrequiredEstimated instrument value in USD
target_marketsarrayoptionalTarget investor jurisdiction IDs
descriptionstringoptionalDeal description for ORBITAL context
Response 200OK — Oracle receipt issued
{ "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
ParameterTypeRequiredDescription
analysis_receipt_idstringrequiredReceipt ID from a passing /analysis call (grade A or B)
deal_namestringrequiredCanonical deal name for artifact generation
spv_jurisdictionstringoptionalOverride SPV jurisdiction (defaults to optimal from path)
target_raise_usdnumberoptionalPrecise raise target (used for fee computation)
Response 200OK — GENESIS artifacts generated
{ "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
ParameterTypeRequiredDescription
asset_classstringoptionalFilter by asset class
jurisdictionstringoptionalFilter by jurisdiction ID
methodstringoptionalFilter by tokenization method
min_success_ratenumberoptionalMinimum method success rate (0-100)
limitintegeroptionalResults 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
ParameterTypeRequiredDescription
sourcestringrequiredSource jurisdiction ID
targetstringrequiredTarget jurisdiction ID
asset_classstringoptionalAsset 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
ParameterTypeRequiredDescription
receipt_idstringrequiredUUID of the receipt to verify
Response 200OK — Receipt verified in chain
{ "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
IDNameBest methodSuccess rateEvidence count
real_estateReal Estatefractionalization87%8
treasuriesTreasuries / T-Billsnav_tracking100%7
carbon_creditsCarbon Creditsyield_stripping71%7
private_creditPrivate Creditrevenue_participation71%7
fundsFunds / NAVnav_tracking100%5
equineEquine / Horsesnav_tracking50%6
defi_yieldDeFi Yield Stripyield_stripping100%4
infrastructureInfrastructurerevenue_participation50%4
maritimeMaritimenone0%9
JURISDICTIONS — 26 NODES IN TENSOR
IDJurisdictionLegal systemPath cost (typical)
us-deDelaware, USACommon Law$2,000
kyCayman IslandsCommon Law$1,000
ae-adgmADGM, Abu DhabiEnglish Common Law$2,000
sgSingaporeCommon Law$8,000
frFranceCivil Law$13,000
hn-prosperaPróspera ZEDECommon Law (RCLC)$11,000
gbUnited KingdomCommon Law$11,000
chSwitzerlandCivil Law$15,000
ae-difcDIFC, DubaiEnglish Common Law$3,000