fix: update API base URL from api.monarchmoney.com to api.monarch.com#187
Open
hoaqbui wants to merge 3 commits intohammem:mainfrom
Open
fix: update API base URL from api.monarchmoney.com to api.monarch.com#187hoaqbui wants to merge 3 commits intohammem:mainfrom
hoaqbui wants to merge 3 commits intohammem:mainfrom
Conversation
Monarch Money rebranded their domain. The old api.monarchmoney.com endpoint returns Cloudflare 525 (SSL handshake failed) for all requests, making the library completely non-functional. The web app bundle at static.monarchmoney.com confirms the new API base URL is https://api.monarch.com. Also updates the README link to the security settings page. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Demonstrates that api.monarchmoney.com returns Cloudflare 525 and that api.monarch.com works correctly for all main API calls. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Remove keyring dependency; token read from MONARCH_TOKEN env var - Simplify can_fetch_accounts helper - Minor style cleanup Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
I just had my agent do the exact same thing. 😆 |
ivy
reviewed
Mar 20, 2026
There was a problem hiding this comment.
You probably don't need this in the final PR?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Monarch Money rebranded their domain. The old
api.monarchmoney.comendpoint now returns Cloudflare 525 (SSL handshake failed) for all requests, making the library completely non-functional.MonarchMoneyEndpoints.BASE_URLfromhttps://api.monarchmoney.comtohttps://api.monarch.comapp.monarchmoney.comtoapp.monarch.comHow I found this
The web app JavaScript bundle at
static.monarchmoney.comcontains the following environment config, confirming the new domain:```
REACT_APP_API_URL:"https://api.monarch.com"
REACT_APP_BASE_URL:"https://app.monarch.com"
```
Test plan
get_accounts()returns data successfully againstapi.monarch.com/graphqlget_transactions()returns data successfullyVerified locally: calling
get_accounts()against the new endpoint returns account data correctly after applying this fix.🤖 Generated with Claude Code