For Agents
Aggregate and enrich financial data from US financial institutions, manage members and accounts, list transactions, and generate connect widgets. Returns enriched transaction streams and verified account data across 166 endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MX Platform API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with MX Platform API.
Connect a user to a financial institution and create a member with their credentials
Sync accounts and transactions from a connected member
Retrieve enriched transactions with category, merchant, and location metadata
GET STARTED
Use for: I need to connect a user's bank account to my app, List all transactions for a connected member, Retrieve a categorized list of recent transactions for an account, Search for a financial institution by name
Not supported: Does not handle card payment processing, merchant acquiring, or lending decisioning — use for bank data aggregation, account verification, and transaction enrichment only.
The MX Platform API aggregates financial data from tens of thousands of financial institutions and enriches it with categorization, merchant matching, and account verification. It covers user and member management, account and transaction sync, microdeposits, ACH return handling, managed institution data, transaction rule engines, tax document retrieval, and embeddable widget URLs. The 166 endpoints span the full lifecycle from connecting a user's bank to producing categorized, merchant-resolved transaction streams.
Generate Connect widget URLs to embed an institution-search and login flow
Look up institutions and credential schemas from the supported catalog
Manage transaction rules to override or refine automatic categorization
Initiate and verify microdeposits for ACH account verification
Patterns agents use MX Platform API for, with concrete tasks.
★ Personal Finance Aggregation
Aggregate balances and transactions across all of a user's bank, credit card, loan, and investment accounts. The MX Platform API handles institution connect via the Connect widget, member management, periodic account/transaction sync, and enrichment with categories and merchants. Personal finance products use this to render a single net worth and budgeting view from disparate institutions.
Generate a Connect widget URL for the user, then on completion call GET /institutions and the user's member endpoints to sync accounts and list enriched transactions.
Account Verification with Microdeposits
Verify ownership of a US bank account using microdeposits before initiating a higher-value transfer. The microdeposits endpoints initiate two small deposits, accept the user's verification amounts, and return a verified account status. This is the standard pattern lending and payroll products use to confirm that a user controls the destination account.
Call POST on the microdeposits initiate endpoint with the user's account number and routing number, wait 1-2 business days, then submit the deposit amounts to verify ownership.
ACH Return Tracking
Track and reconcile ACH returns when payments fail to settle. The /ach_returns endpoints expose returns by GUID and let products create return records as they arrive from the originating bank. Finance teams use this to surface failed payments quickly and trigger recovery flows for the underlying transaction.
Call GET /ach_returns to list pending returns, then GET /ach_returns/{ach_return_guid} to read the return reason for each and update the originating payment record.
Transaction Categorization Overrides
Override default transaction categorization for a specific user or rule pattern. MX's enrichment automatically assigns categories like Groceries or Utilities, but users sometimes need custom buckets. The transaction rules endpoints let products define matchers and target categories that override the default mapping for that user's transactions.
Create a transaction rule that matches description containing 'COFFEE' and assigns the 'Coffee Habit' category, then verify recent transactions are recategorized.
AI Agent Personal Finance Assistant
Power a Jentic-driven agent that answers natural-language questions about a user's spending and balances. The agent searches Jentic for 'list user transactions', loads the relevant member endpoint, and aggregates results into the answer. Jentic injects the bearer or basic credentials at execution time so the agent never holds raw banking credentials.
Through Jentic, search for 'list transactions for a member', load the operation, sync recent transactions, and return total spending in the Restaurants category for the last 30 days.
166 endpoints — the mx platform api aggregates financial data from tens of thousands of financial institutions and enriches it with categorization, merchant matching, and account verification.
METHOD
PATH
DESCRIPTION
/institutions
List supported institutions
/institutions/{institution_code}
Read a specific institution
/authorization_code
Request an authorization code
/ach_returns
List ACH returns
/ach_returns
Create an ACH return record
/categories/default
List default transaction categories
/merchants
List merchants
/merchants/{merchant_guid}
Read a merchant
/institutions
List supported institutions
/institutions/{institution_code}
Read a specific institution
/authorization_code
Request an authorization code
/ach_returns
List ACH returns
/ach_returns
Create an ACH return record
Three things that make agents converge on Jentic-routed access.
Credential isolation
MX supports bearer tokens and basic auth; both are stored encrypted in the Jentic vault and injected at execution time. Agents never see banking-grade credentials in their context, which is critical for finance workloads.
Intent-based discovery
Agents search Jentic with intents like 'list user transactions' or 'verify a bank account' and Jentic returns the matching MX operation with its parameter schema, so the agent does not need to traverse 166 endpoints manually.
Time to first call
Direct MX integration including auth, Connect widget hosting, webhook handling, and error recovery typically takes 1-2 weeks. Through Jentic, agents can search, load, and execute specific endpoints in under an hour for read flows.
Alternatives and complements available in the Jentic catalogue.
Specific to using MX Platform API through Jentic.
What authentication does the MX Platform API use?
MX supports both HTTP bearer authentication and HTTP basic authentication using a client ID and API key issued from the MX dashboard. Through Jentic, both credential types are stored in the Jentic vault and applied to requests at execution time, so agent code never sees the raw credentials.
Can I connect a user's bank account with the MX Platform API?
Yes. Generate a Connect widget URL via the widgets endpoints, render the URL in your app, and let the user pick their institution and authenticate. MX returns a member object that subsequent /accounts and /transactions calls reference.
How do I list a user's transactions through Jentic?
Through Jentic, search for 'list a member's transactions', load the relevant member transactions operation, and pass the user GUID and member GUID. Jentic returns the enriched transaction list with category, merchant, and location metadata to your agent.
What are the rate limits for the MX Platform API?
MX enforces per-client rate limits documented in their developer portal rather than the OpenAPI spec. Watch for 429 responses and respect the Retry-After header; production limits are typically negotiated per partner agreement.
Does the MX Platform API support microdeposit verification?
Yes. The microdeposits endpoints let you initiate two small deposits to a destination account and then submit the user-reported amounts to confirm ownership. This is the standard verification flow before initiating ACH transfers.
Can the MX Platform API enrich transactions with merchant data?
Yes. Transaction responses include resolved merchants linked to /merchants/{merchant_guid} records, plus default categories from /categories/default. Use transaction rules to override the defaults for a specific user.
/categories/default
List default transaction categories
/merchants
List merchants
/merchants/{merchant_guid}
Read a merchant