Invest in the Infrastructure
Powering AI Agents
Fund cloud, GPU, tokens, APIs, data and operations — earn discounted ET10/ETLP tokens and equity. Negotiate your terms with Nexus AI.
POST /api/v1/ai-fund/negotiate or let it chat directly with Nexus to generate a term sheet.
The Six Pillars
Cloud
Scalable compute for AI model inference and training
GPU
High-performance GPU clusters for real-time prediction
Tokens
ET10 and ETLP token infrastructure and liquidity
APIs
REST, MCP, and SDK interfaces for agent integration
Data
Market data pipelines, feeds, and analytics
Operations
Monitoring, deployment, and reliability engineering
Default Investment Terms
| Tier | ET10 Discount | ETLP Discount | Equity | Lock-up Bonus |
|---|---|---|---|---|
| $1K+ | 5–10% | 5–8% | — | +1% |
| $10K+ | 10–18% | 8–15% | 0.5% | +2% |
| $25K+ | 15–22% | 12–18% | 1.0% | +3% |
| $50K+ | 20–27% | 15–22% | 1.5% | +4% |
| $100K+ | 25–30% | 20–25% | 2.5% | +5% |
Want better terms? Negotiate directly with Nexus for personalized discounts based on your investment size and lock-up commitment.
API, MCP & SDK for AI Agents
import httpx
BASE = "https://cymetica.com/api/v1/ai-fund"
headers = {"Authorization": "Bearer et_..."}
stats = httpx.get(f"{BASE}/stats", headers=headers).json()
terms = httpx.post(f"{BASE}/negotiate", headers=headers,
json={"amount": 25000, "lock_up_months": 12,
"preferred_mix": {"et10": 0.6, "etlp": 0.4}}).json()
position = httpx.post(f"{BASE}/invest", headers=headers,
json={"term_sheet_id": terms["id"]}).json()
print(f"Invested ${position.amount} — {position.et10_tokens_issued} ET10")import { AIFundClient } from '@eventtrader/sdk';
const client = new AIFundClient({ apiKey: 'et_...' });
const terms = await client.fund.negotiate({
amount: 25000, lockUpMonths: 12,
preferredMix: { et10: 0.6, etlp: 0.4 }
});
const position = await client.fund.invest({ termSheetId: terms.id });# Get fund terms
curl -H "Authorization: Bearer $API_KEY" https://cymetica.com/api/v1/ai-fund/terms
# Negotiate
curl -X POST -H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"amount":25000,"lock_up_months":12,"preferred_mix":{"et10":0.6,"etlp":0.4}}' \
https://cymetica.com/api/v1/ai-fund/negotiate
# Invest
curl -X POST -H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"term_sheet_id":123}' \
https://cymetica.com/api/v1/ai-fund/investBuild Your Agent
Python SDK Agent
▼"""AI fund investment agent — checks performance and auto-invests."""
import httpx
BASE = "https://cymetica.com/api/v1/ai-fund"
headers = {"Authorization": "Bearer et_demo_key"}
perf = httpx.get(f"{BASE}/stats", headers=headers).json()
if perf.get("roi_pct", 0) > 15:
terms = httpx.post(f"{BASE}/negotiate", headers=headers,
json={"amount": 25000, "lock_up_months": 12,
"preferred_mix": {"et10": 0.6, "etlp": 0.4}}).json()
print(f"ET10 discount: {terms['et10_discount_pct']}%")
print(f"Equity sweetener: {terms['equity_pct']}%")
position = client.fund.invest(term_sheet_id=terms.id)
print(f"Invested ${position.amount}")MCP Agent Config
▼{
"mcpServers": {
"eventtrader-ai-fund": {
"url": "https://cymetica.com/mcp/ai-fund",
"headers": { "Authorization": "Bearer et_demo_key" }
}
}
}curl Pipeline
▼#!/bin/bash
API="https://cymetica.com/api/v1/ai-fund"
KEY="et_demo_key"
H="Authorization: Bearer $KEY"
STATS=$(curl -s -H "$H" "$API/stats")
echo "Fund AUM: $(echo $STATS | jq -r .aum_usdc)"
TERMS=$(curl -s -X POST -H "$H" -H "Content-Type: application/json" \
-d '{"amount":10000,"lock_up_months":6,"preferred_mix":{"et10":0.5,"etlp":0.5}}' \
"$API/negotiate")
TS_ID=$(echo $TERMS | jq -r .term_sheet_id)
curl -s -X POST -H "$H" -H "Content-Type: application/json" \
-d "{\"term_sheet_id\":$TS_ID}" "$API/invest"Want help building your agent? Ask Nexus for guidance on integrating with the API, MCP server, or SDK.
How It Works
Invest
Choose amount, negotiate terms with Nexus
Tokens Issued
Receive discounted ET10/ETLP + equity
Infrastructure Scales
Capital deployed across 6 pillars
Returns Flow
Revenue from platform growth distributed