Financial Data
Cleveland Fed
economyCleveland Fed is an cost-effective financial data provider offering Inflation Nowcast, Inflation Expectations, Recession Probability through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Quick start
Use Cleveland Fed 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": "cleveland-fed",
"capability": "finance.inflation-nowcast",
"input": { "prompt": "Hello from Cleveland Fed!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'cleveland-fed',
capability: 'finance.inflation-nowcast',
input: { prompt: 'Hello from Cleveland Fed!' },
});
console.log(result.output);