Financial Data
OpenFEC — US Federal Election Commission Campaign Finance
economyOpenFEC — US Federal Election Commission Campaign Finance is an cost-effective financial data provider offering Campaign Finance (Real-time), Prediction Market Alpha through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (2)
Quick start
Use OpenFEC — US Federal Election Commission Campaign Finance 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": "openfec",
"capability": "finance.campaign-finance",
"input": { "prompt": "Hello from OpenFEC — US Federal Election Commission Campaign Finance!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'openfec',
capability: 'finance.campaign-finance',
input: { prompt: 'Hello from OpenFEC — US Federal Election Commission Campaign Finance!' },
});
console.log(result.output);