One unified API to sync bank feed statements across all major accounting platforms. Build once, integrate everywhere.
Standard CRUD operations normalized across all platforms
/bank-feed-statementsRetrieve all bank feed statements with pagination and filtering
/bank-feed-statements/{id}Fetch a single bank feed statement by ID
/bank-feed-statementsCreate a new bank feed statement
/bank-feed-statements/{id}Update an existing bank feed statement
Start syncing bank feed statements in minutes
import { Apideck } from '@apideck/node'
const apideck = new Apideck({
apiKey: 'YOUR_API_KEY',
appId: 'YOUR_APP_ID',
consumerId: 'user-123'
})
// List bank feed statements from any connected accounting platform
const response = await apideck.accounting.bankfeedstatementsAll()
// Returns normalized data regardless of the underlying platform
console.log(response.data)
// [
// { id: '123', ... },
// { id: '456', ... }
// ]
// Works the same for Xero, QuickBooks, NetSuite, etc.Explore other unified endpoints in the Accounting API
You can use the official Apideck SDKs to simplify integrating our APIs.
The official Node.js SDK supports all the Unify API endpoints.
The official TypeScript SDK with full type definitions for all endpoints.
The official PHP SDK supports all the Unify API endpoints.
The official .NET SDK supports all the Unify API endpoints.
The official Python SDK supports all the Unify API endpoints.
The official Java SDK supports all the Unify API endpoints.
The official Go SDK supports all the Unify API endpoints.