Oraculum Protocol Docs
  • Introduction to Oraculum
  • General
    • Vision & Philosophy
    • Key Features
      • 1. Natural Language Blockchain Interface
      • 2. Solana Native
      • 3. Wallet Intelligence Layer
      • 4. Real-Time Transaction Aggregation
      • 5. Conversational AI Layer
  • Architecture Overview
    • Core Components
    • AI Model Stack
    • Data Pipeline
  • Use Cases
    • Retail Traders
    • Institutional Analysts
    • Crypto Influencers & Communities
    • DeFi Protocols & DAOs
  • How It Works
  • Technical Overview
    • Ecosystem Integrations
    • Query Translation Engine
    • Custom Solana Indexer
    • AI Orchestration Layer
    • Oraculum API
  • End of the Docs
    • Glossary
Powered by GitBook
On this page
  1. Technical Overview

Oraculum API

While not yet publicly released, the Oraculum API is being architected as a robust, enterprise-grade access layer designed for developers, platforms, and institutions who want to integrate wallet intelligence directly into their own products.

Key Design Goals:

  • RESTful & gRPC Endpoints: Dual access patterns will support both conventional REST consumers and high-performance gRPC clients for latency-sensitive environments.

  • Query Abstraction Layer: Developers will be able to send natural-language-like payloads (e.g., {"question": "How much SOL did Wallet X send to CEXs last week?"}), and receive structured, validated JSON responses.

  • Modular Access Tiers: From free, rate-limited public endpoints to paid premium queries with higher throughput and historical depth.

  • Token-Gated Security: Certain endpoints will require holding Oraculum tokens or authenticated API keys to access more advanced analytics modules.

  • Webhooks & Subscriptions (Future): Planned features include real-time wallet monitoring and auto-notifications for behavioral anomalies or specified triggers.

Example Query (Planned Format):

jsonKopierenBearbeitenPOST /query
{
  "wallet": "8uj123...xyz",
  "intent": "outflows_to_cex",
  "timeframe": "last_30_days"
}

Response:

jsonKopierenBearbeiten{
  "total_amount": "2,441 SOL",
  "cexs": [
    {"name": "Binance", "amount": "1,280 SOL"},
    {"name": "Coinbase", "amount": "1,161 SOL"}
  ]
}
PreviousAI Orchestration LayerNextGlossary

Last updated 4 days ago