OFR Short-Term Funding Monitor Scraper avatar

OFR Short-Term Funding Monitor Scraper

Pricing

from $6.00 / 1,000 results

Go to Apify Store
OFR Short-Term Funding Monitor Scraper

OFR Short-Term Funding Monitor Scraper

Track repo rates, money market fund balances, and Treasury yields from the US Office of Financial Research Short-Term Funding Monitor. Every record carries a mnemonic, series name, description, observation date, and numeric value. Filter by date for funding research and rate analysis.

Pricing

from $6.00 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Share

ParseForge Banner

📈 OFR Short-Term Funding Monitor Scraper

🚀 Turn the OFR Short-Term Funding Monitor into clean dated rows. Every observation becomes one record with mnemonic, series name, date, and value, ready for your model or dashboard.

🕒 Last updated: 2026-06-05 · 📊 11 fields per record · 442 series · repo rates, money market funds, federal funds, and Treasury yields

The U.S. Office of Financial Research publishes the Short-Term Funding Monitor, a public data service that tracks money-market activity across repo, money market funds, and benchmark interest rates. This Actor reads that service and hands you back one tidy row for every observation, so a multi year rate series becomes a stack of dated rows you can chart, join, or load straight into a notebook.

Coverage spans DVP, GCF, and tri-party repo rates, money market fund investments, the effective federal funds rate, the overnight bank funding rate, and Treasury constant maturity yields. Fetch a single known series by its mnemonic, add as many extra mnemonics as you like, and narrow the window with start and end dates.

🎯 Target Audience💡 Primary Use Cases
Fixed income analystsTrack repo and funding rates over time
Economists and researchersBuild money-market and rate panels
Quants and data scientistsFeed time series into models and backtests
Risk and treasury teamsMonitor short-term funding conditions
Journalists and educatorsPull official figures with full provenance

📋 What the OFR Short-Term Funding Monitor Scraper does

This Actor talks to the public OFR Short-Term Funding Monitor API and returns money-market observations as flat rows. For each series it reads the full metadata and the dated value array, then emits the most recent observations first, each carrying the mnemonic, series name, description, subtype, frequency, and vintage. You can target one mnemonic from a curated list, add any number of custom mnemonics, and filter by a date range.

🎬 Full Demo (🚧 Coming soon)

⚙️ Input

FieldTypeDescription
mnemonicselectA known OFR series mnemonic. Defaults to the DVP overnight/open repo rate.
customMnemonicsarrayAny number of extra mnemonics to fetch alongside the selected one.
maxItemsintegerCap on observations returned. Free plan is limited to 10.
startDatestringEarliest observation date as YYYY-MM-DD. Optional.
endDatestringLatest observation date as YYYY-MM-DD. Optional.

Example 1, one known series

{
"mnemonic": "REPO-DVP_AR_OO-P",
"maxItems": 50
}

Example 2, several series within a date range

{
"mnemonic": "REPO-TRI_AR_OO-P",
"customMnemonics": ["REPO-GCF_AR_OO-P", "TYLD-TCMR-10Yr-A"],
"startDate": "2025-01-01",
"endDate": "2026-01-01",
"maxItems": 300
}

⚠️ Good to Know: Observations are emitted newest first, and series are interleaved so a mix of mnemonics is represented under the item cap. Missing values, which the OFR uses for non-trading days or confidential periods, are skipped so every value is a usable number. Daily series can run thousands of observations, so set maxItems to keep runs focused.

📊 Output

Each record is a single observation with full series provenance.

FieldTypeDescription
🔖 mnemonicstringOFR series mnemonic, for example REPO-DVP_AR_OO-P.
📌 seriesNamestringHuman readable series name.
📝 descriptionstringFull source description of what the series measures.
🏷 subtypestringSeries subtype, for example Interest Rate.
🧭 subsettingstringHow the series is broken out, for example Tenor.
frequencystringSeries frequency, daily or monthly.
🗂 vintagestringVintage tag such as Preliminary when the source provides one.
📅 datestringObservation date in YYYY-MM-DD.
🔢 valuenumberThe observation value, a rate or a dollar amount.
🕒 scrapedAtstringISO timestamp when the row was collected.
errorstringNull on success, message on failure.

Real sample records

{
"mnemonic": "REPO-DVP_AR_OO-P",
"seriesName": "DVP Service Average Rate: Overnight/Open (Preliminary)",
"description": "Volume-weighted mean interest rate of overnight and open repurchase agreements in the Fixed Income Clearing Corporation's DVP Service",
"subtype": "Interest Rate",
"subsetting": "Tenor",
"frequency": "Daily",
"vintage": "Preliminary",
"date": "2026-06-03",
"value": 3.63,
"scrapedAt": "2026-06-05T16:30:43.798Z",
"error": null
}
{
"mnemonic": "REPO-TRI_AR_OO-P",
"seriesName": "Tri-Party Average Rate: Overnight/Open (Preliminary)",
"description": "Volume-weighted mean interest rate of overnight and open repurchase agreements that were settled in tri-party repo",
"subtype": "Interest Rate",
"subsetting": "Tenor",
"frequency": "Daily",
"vintage": "Preliminary",
"date": "2026-06-02",
"value": 3.62,
"scrapedAt": "2026-06-05T16:30:43.856Z",
"error": null
}
{
"mnemonic": "TYLD-TCMR-10Yr-A",
"seriesName": "10-Year Treasury Constant Maturity Rate",
"description": "10-Year Treasury Constant Maturity Rate. Yields are interpolated by the Treasury from the daily yield curve.",
"subtype": "Interest Rate",
"subsetting": "None",
"frequency": "Daily",
"vintage": "",
"date": "2026-06-03",
"value": 4.49,
"scrapedAt": "2026-06-05T16:30:43.936Z",
"error": null
}

✨ Why choose this Actor

  • One row per observation, no nested arrays to unpack.
  • Full provenance on every row, so you always know the series and what it measures.
  • Works keyless against the public OFR API, no account or token to manage on the source side.
  • Curated list of known mnemonics plus open custom input for any series.
  • Clean numeric values with plain dates, ready for charts and models.

📈 How it compares to alternatives

ApproachProvenance per rowDate filteringSetup effort
This ActorYes, series metadata includedYes, start and end datesPick a mnemonic and run
Manual API callsYou build it yourselfYou build it yourselfWrite and maintain code
Spreadsheet downloadsOften lostManualManual and repetitive

🚀 How to use

  1. Sign up for a free Apify account using this link.
  2. Open the OFR Short-Term Funding Monitor Scraper in the Apify Console.
  3. Pick a mnemonic from the dropdown and add any custom mnemonics you want.
  4. Set maxItems and an optional startDate and endDate, then click Start.
  5. Watch the run finish and open the results to view or pull your observations.

💼 Business use cases

Funding and rates research

GoalHow this helps
Track repo conditionsPull DVP, GCF, and tri-party rates into one table
Compare benchmarksCollect federal funds and Treasury yields side by side

Quant and modeling

GoalHow this helps
Feature engineeringTurn long history series into dated training rows
BacktestingAlign observations by date across series

Risk and treasury

GoalHow this helps
Liquidity monitoringFollow money market fund balances over time
Stress signalsWatch short-term rate moves around quarter ends

Content and education

GoalHow this helps
Data journalismCite official figures with series names and dates
TeachingHand students clean, sourced money-market series

🔌 Automating OFR Short-Term Funding Monitor Scraper

Connect runs to Make, Zapier, Slack, Airbyte, GitHub, or Google Drive through the Apify integrations. Schedule a daily run to refresh a repo rate panel, post new observations to a Slack channel, or sync results into a Google Sheet for a live dashboard.

🌟 Beyond business use cases

  • Research: assemble reproducible money-market datasets with full provenance for papers.
  • Personal: track the funding rates you care about in a private dashboard.
  • Non-profit: monitor public financial-stability indicators from a government source.
  • Experimentation: prototype rate models without writing API plumbing.

🤖 Ask an AI assistant

Drop your results into ChatGPT, Claude, Perplexity, or Microsoft Copilot and ask it to summarize trends, compute spreads between rates, or compare series across tenors.

❓ Frequently Asked Questions

What is the OFR Short-Term Funding Monitor? It is a public data service from the U.S. Office of Financial Research that tracks money-market activity, including repo rates, money market funds, and benchmark interest rates.

Do I need an API key or account on the OFR? No. The OFR API is public and keyless. You only need an Apify account to run this Actor.

How do I find a mnemonic? Browse the OFR series catalog at data.financialresearch.gov, or pick one from the dropdown. Mnemonics look like REPO-DVP_AR_OO-P or TYLD-TCMR-10Yr-A.

Can I fetch more than one series at once? Yes. Pick one in the dropdown and add any number of extra mnemonics in the custom field. They are fetched together.

How does the date filter work? Set startDate and endDate as YYYY-MM-DD. Only observations within that range are returned. Leave them empty for full history.

In what order are observations returned? Newest first within each series, and series are interleaved so a mix of mnemonics is represented under the item cap.

How many observations can I get? Free plans return up to 10. Paid plans can return up to 1,000,000 per run.

Why are some dates missing from a series? The OFR records missing values for non-trading days or periods where data is withheld to protect confidential information. Those entries are skipped so every value is usable.

What does the value field represent? A rate in percent for interest rate series, or a dollar amount for money market fund balances, depending on the series.

What is a vintage? Some series carry a tag like Preliminary that marks the data revision stage. The field appears when the source provides one.

Which families of series are covered? DVP, GCF, and tri-party repo, money market funds, federal funds and overnight bank funding rates, and Treasury constant maturity yields, among others, across more than 400 mnemonics.

Is the value always numeric? Yes. Missing and non numeric entries are skipped so every value is a usable number.

🔌 Integrate with any app

Use the Apify API, webhooks, and scheduler to wire results into your own stack, or trigger downstream jobs whenever a run completes.

💡 Pro Tip: browse the complete ParseForge collection.

🆘 Need Help? Open our contact form

⚠️ Disclaimer: independent tool, not affiliated with the U.S. Office of Financial Research or the U.S. Treasury. Only publicly available data is collected.