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"}
]
}
Last updated