finance
Financial Data
Geopolitical Event Stream
Geopolitical Event Stream is a financial data capability available through GDELT 2.0 — Global Event Database + Knowledge Graph on Aweb. CAMEO event codes + Goldstein scale from global monitors for macro-shock proxies. Access it through a single unified API with automatic failover and intelligent routing.
Best for
Highest quality
GDELT 2.0 — Global Event Database + Knowledge Graph
Premium tier
Most affordable
GDELT 2.0 — Global Event Database + Knowledge Graph
Economy tier
Contract
Providers (1)
Quick start
Call Geopolitical Event Stream through Aweb — automatic provider selection, failover, and load balancing included.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"capability": "finance.geopolitics",
"input": { "prompt": "Hello world" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
// Aweb automatically selects the best provider
const result = await aweb.execute({
capability: 'finance.geopolitics',
input: { prompt: 'Hello world' },
});
console.log(result.output);Orchestration pipeline
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
// Multi-step pipeline with automatic failover
const result = await aweb.orchestrate({
steps: [
{ id: 'step1', capability: 'finance.geopolitics', input: { prompt: 'Hello world' } },
{ id: 'step2', capability: 'llm.chat', dependsOn: ['step1'],
input: { prompt: 'Summarize: $step1.output' } },
],
});