BETA v0.9.4
Aevum Zenth GraphQL Beta
Unified data access layer across all 400 subsidiaries. Query energy grids, financial ledgers, aerospace telemetry, and health datasets in a single request.
https://api.aevumzenth.io/graphql-beta
🚀 Quick Start
1
Generate API Key
Create a sandbox key from the developer dashboard. Beta keys auto-expire after 90 days.
2
Set Authorization
Include your key in the header: Authorization: Bearer <your-beta-key>
3
Execute Query
Use any GraphQL client. We support introspection, subscriptions, and batch mutations.
Request
1query GetGlobalMetrics {
2 energyGrid(region: "EMEA") {
3 load(unit: "MW")
4 renewableShare
5 }
6 financialLedger(scope: "CONSOLIDATED") {
7 qtrRevenue
8 operatingMargin
9 }
10}
Response
{
"data": {
"energyGrid": {
"load": 142850,
"renewableShare": 0.68
},
"financialLedger": {
"qtrRevenue": 23400000000,
"operatingMargin": 0.184
}
},
"extensions": {
"cost": { "totalComplexity": 42, "limit": 1000 },
"trace": "zenth-node-eu-04"
}
}
📦 Schema Overview
energyGrid(region: String!)
Real-time power grid metrics by region
EnergyGrid
financialLedger(scope: LedgerScope!)
Consolidated financial reporting data
FinancialEntity
aerospaceTelemetry(orbitalId: ID!)
Live telemetry from satellite/launch assets
AerospaceTelemetry
healthDataset(query: String!)
Anonymized clinical & research datasets
HealthDataset
Beta Environment Notice
This API is in active development. Breaking changes may occur between v0.9.x releases. Rate limits are set to 1,000 requests/hour per key. Production workloads should use the stable REST endpoints. Subscribe to the Changelog Feed for migration guides.