Financial Data
SEC EDGAR
economySEC EDGAR is an cost-effective financial data provider offering SEC Filings, SEC Filing Search, SEC Company Facts through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Quick start
Use SEC EDGAR 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": "sec-edgar",
"capability": "finance.filings",
"input": { "prompt": "Hello from SEC EDGAR!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'sec-edgar',
capability: 'finance.filings',
input: { prompt: 'Hello from SEC EDGAR!' },
});
console.log(result.output);