Debt Dashboard & Real-Time Monitoring
Requesting an Account Update
Updates pull real-time data — balance, credit limit, APR, due dates, payment history — directly from the financial institution. This is the core data feed for any debt dashboard. Request an update for Sarah’s Chase Sapphire Reserve card:- Request
- Response
usage_pattern is transactor — she pays in full each month.
Subscribing to Continuous Updates
Rather than polling for updates, subscribe to receive them automatically. When the financial institution reports new data, Method delivers it via webhook.- Request
- Response
update.create and update.update webhook events whenever new data is available. Your app can refresh the dashboard in real time without the user taking any action.
Card Brand Art
For credit card accounts, Card Brand retrieves the card’s product name, issuer, network, and card art image. This lets your wallet UI display the actual card visual instead of a generic placeholder.- Request
- Response
url field provides a direct link to the card’s art image, which you can render in your wallet or dashboard UI.
Entity-Level Attributes
Attributes provide entity-level financial health metrics aggregated across all of a user’s accounts. These power features like credit health dashboards, utilization alerts, and financial wellness scores.- Request
- Response
Credit Building & Score Insights
Retrieving Credit Scores
Credit Scores retrieve the user’s credit score sourced from Equifax using the VantageScore 4.0 model. The response includes contributing factors that explain what’s helping or hurting the score.- Request
- Response (completed)
Credit score requests are asynchronous. The initial response will have
status: "pending" and scores: null. You’ll receive a webhook when the score is ready.Credit Score Subscriptions
To monitor Sarah’s credit score over time, enroll her in a credit score subscription. Method will automatically check for score changes and send webhook events when her score increases or decreases.- Request
- Response
Combining Scores and Attributes
The most effective credit building experiences combine credit scores with attributes. The score tells users where they stand, while attributes tell them why and what to do about it:| Attribute | Sarah’s Value | Rating | What to Surface |
|---|---|---|---|
| Credit card usage | 22% | Good | ”Your utilization is healthy — keep it under 30%“ |
| Payment history | 100% | Excellent | ”Perfect payment record — keep it up!” |
| Credit age | 48 months | Fair | ”Your accounts are relatively new — time helps here” |
| Derogatory marks | 0 | Excellent | ”No negative marks on your report” |
| Hard inquiries | 2 | Good | ”2 recent inquiries — avoid applying for new credit” |
Attributes API Reference
Full documentation for all available attribute types and their ratings.
What’s Next
Transactions & Payments
Stream credit card transactions for spend management and initiate bill payments.
Update Subscriptions Guide
Deep dive into update subscription types, frequencies, and webhook payloads.