Financial Data
CME FedWatch
economyCME FedWatch is an cost-effective financial data provider offering Federal Funds Rate Data, Rate Expectations through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (2)
Quick start
Use CME FedWatch 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": "cme-fedwatch",
"capability": "finance.fed-rate",
"input": { "prompt": "Hello from CME FedWatch!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'cme-fedwatch',
capability: 'finance.fed-rate',
input: { prompt: 'Hello from CME FedWatch!' },
});
console.log(result.output);