Financial Data
GEX Engine
economyGEX Engine is an cost-effective financial data provider offering Gamma Exposure, Dealer Stress Index, Key Options Levels and 2 more through Aweb's unified API. It features none streaming support with premium-tier latency.
Specifications
Capabilities (5)
Quick start
Use GEX Engine through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "gex",
"capability": "finance.gex",
"input": { "prompt": "Hello from GEX Engine!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'gex',
capability: 'finance.gex',
input: { prompt: 'Hello from GEX Engine!' },
});
console.log(result.output);