AgentSkillsCN

plaid-fintech

精通 Plaid API 集成的最佳实践,涵盖 Link Token 流程、交易同步、身份验证、ACH 认证、余额查询、Webhook 处理以及金融科技合规领域的最佳实践。U

SKILL.md
--- frontmatter
name: plaid-fintech
description: Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices. U
category: AI & Agents
source: antigravity
tags: [api, ai]
url: https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/plaid-fintech

Plaid Fintech

Patterns

Link Token Creation and Exchange

Create a link_token for Plaid Link, exchange public_token for access_token. Link tokens are short-lived, one-time use. Access tokens don't expire but may need updating when users change passwords.

Transactions Sync

Use /transactions/sync for incremental transaction updates. More efficient than /transactions/get. Handle webhooks for real-time updates instead of polling.

Item Error Handling and Update Mode

Handle ITEM_LOGIN_REQUIRED errors by putting users through Link update mode. Listen for PENDING_DISCONNECT webhook to proactively prompt users.

Anti-Patterns

❌ Storing Access Tokens in Plain Text

❌ Polling Instead of Webhooks

❌ Ignoring Item Errors

⚠️ Sharp Edges

IssueSeveritySolution
IssuecriticalSee docs
IssuehighSee docs
IssuehighSee docs
IssuehighSee docs
IssuemediumSee docs
IssuemediumSee docs
IssuemediumSee docs
IssuemediumSee docs