Private AI compute that runs on clean energy — provably.
Ealna is a decentralized compute network where inference runs inside confidential enclaves on nodes powered by verified renewable energy. You get an OpenAI-compatible endpoint returning an answer plus cryptographic proof it was private and green.
One endpoint · the models that matter
Private by default. Green by design.
x402 is per-request payment over HTTP — pay per inference, no subscription.
Live
Private Intelligence
Chat across open + frontier models. Every green answer runs sealed on clean compute and ships a Green Compute Certificate.
Learn moreLive
Green Compute Network
Clean-energy GPUs contributing private compute — 4× H100 active across regions, and you can inject your own.
Learn more{
"model": "open-llm-8b",
"messages": [
{"role": "user", "content": "Summarize Q3 Financials..."}
],
"temperature": 0.2
}{
"id": "chatcmpl-9f3a...",
"object": "chat.completion",
"choices": [
{
"message": {
"role": "assistant",
"content": "Based on the Q3 financials..."
}
}
],
"usage": { "total_tokens": 1420 }
}"certificate": {
"serial": "GCC-000128401",
"node_id": "node-7f3a",
"privacy": {
"mode": "TEE",
"attestation": "0x44a2..."
},
"carbon": {
"source": "geothermal",
"est_gco2": 0.27
},
"status": "verified on-chain"
}Drop-in replacement.
Zero friction.
Ealna exposes a fully OpenAI-compatible API. Just change your base URL, and your existing AI applications instantly run inside confidential enclaves powered by renewable energy.
- ✓OpenAI SDK Compatible
Use the exact same Python or Node.js libraries you already use.
- ✓x402 Pay-per-call
Settle automatically per inference. No subscriptions, no credit cards.
- ✓Certificate Embedded
The Green Compute Certificate is returned directly in the response payload.
from openai import OpenAI
# 1. Change the base URL to Ealna
client = OpenAI(
base_url="https://api.ealna.com/v1",
api_key="ea_wallet..." # x402
)
# 2. Add privacy & green routing preferences
response = client.chat.completions.create(
model="ealna-llama3-8b",
messages=[{
"role": "user",
"content": "Analyze Q3 data..."
}],
extra_headers={
"x-ealna-privacy": "tee-strict",
"x-ealna-carbon-max": "50gCO2/kWh"
}
)
# 3. Get your answer PLUS the certificate!
print(response.choices[0].message.content)
print(f"Certificate: {response.ealna_certificate.serial}")Confidential Enclaves
TEE and FHE based execution. We handle all privacy isolation so you never think about data leaks again.
Green Certificates
Bidirectional proof of clean energy usage to keep your compliance and ESG reporting informed.
Agent-Native x402
Every session carries full context — sandbox state, files, progress. Your agent never starts from scratch.
Model & Framework Agnostic
No lock-in. Swap models based on cost, capability, or use case. Your tools and auth carry over, zero rework.