Financial Data
Quiver Quantitative
economyQuiver Quantitative is an cost-effective financial data provider offering Congressional Trading, Insider Trading, Government Contracts and 1 more through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (4)
Quick start
Use Quiver Quantitative 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": "quiver-quantitative",
"capability": "finance.congressional-trades",
"input": { "prompt": "Hello from Quiver Quantitative!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'quiver-quantitative',
capability: 'finance.congressional-trades',
input: { prompt: 'Hello from Quiver Quantitative!' },
});
console.log(result.output);