Financial Data
Plaid
premiumPlaid is an enterprise-grade financial data provider offering Bank Accounts, Transactions, Identity Verification and 1 more through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (4)
Quick start
Use Plaid through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "plaid",
"capability": "finance.accounts",
"input": { "prompt": "Hello from Plaid!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'plaid',
capability: 'finance.accounts',
input: { prompt: 'Hello from Plaid!' },
});
console.log(result.output);