Financial Data
GDELT 2.0 — Global Event Database + Knowledge Graph
economyGDELT 2.0 — Global Event Database + Knowledge Graph is an cost-effective financial data provider offering Sentiment (Tone + Volume), Geopolitical Event Stream through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (2)
Quick start
Use GDELT 2.0 — Global Event Database + Knowledge Graph 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": "gdelt",
"capability": "finance.sentiment",
"input": { "prompt": "Hello from GDELT 2.0 — Global Event Database + Knowledge Graph!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'gdelt',
capability: 'finance.sentiment',
input: { prompt: 'Hello from GDELT 2.0 — Global Event Database + Knowledge Graph!' },
});
console.log(result.output);