Financial Data
Unusual Whales
standardUnusual Whales is an reliable financial data provider offering Options Flow Intelligence, Congressional Trading, Dark Pool Intelligence and 1 more through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (4)
Quick start
Use Unusual Whales 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": "unusual-whales",
"capability": "finance.options-flow",
"input": { "prompt": "Hello from Unusual Whales!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'unusual-whales',
capability: 'finance.options-flow',
input: { prompt: 'Hello from Unusual Whales!' },
});
console.log(result.output);