Discover/FinancialJuice API
live

FinancialJuice APIfinancialjuice.com

Access FinancialJuice financial news, economic calendar, MOO/MOC imbalances, and high-impact news scoring via 7 structured endpoints.

Endpoint health
verified 15h ago
get_news_feed
get_high_impact_news
get_economic_calendar
search_tariffs
get_imbalances
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the FinancialJuice API?

The FinancialJuice API exposes 7 endpoints covering real-time financial news, economic calendar events, and market imbalance data. The get_high_impact_news endpoint assigns a computed volatility score (1–10) to market-moving headlines, filtering to items scoring 3 or above. Other endpoints return structured calendar events with actual, forecast, and previous data values, plus MOO and MOC imbalance summaries for S&P 500, NASDAQ 100, DOW 30, and MAG 7 indexes.

Try it
Search filter keyword for news items. Omitting returns all recent news.
Last news ID for pagination (fetch items older than this ID). Pass 0 or omit to get the latest.
Tab filter ID for category filtering. 0 returns all categories.
api.parse.bot/scraper/1ffd7dde-1ef5-44de-aeeb-4e70d73df082/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1ffd7dde-1ef5-44de-aeeb-4e70d73df082/get_news_feed?old_id=0&tab_id=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace financialjuice-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""FinancialJuice SDK — real-time financial news, calendar, and market data."""
from parse_apis.financial_juice_api import FinancialJuice, Article, QueryRequired

client = FinancialJuice()

# Latest news feed — list with pagination, capped at 5 items
for article in client.articles.list(limit=5):
    print(article.title, article.timestamp, article.labels)

# Search for Fed-related news
article = client.articles.search(query="Fed", limit=1).first()
if article:
    print(article.title, article.url)

# Typed error handling — catch invalid input
try:
    for a in client.articles.search(query="", limit=1):
        print(a.title)
except QueryRequired as exc:
    print(f"Query required: {exc}")

# Economic calendar — high-impact events
for event in client.calendarevents.list(limit=3):
    print(event.title, event.country, event.impact, event.actual)

# Market imbalances — singleton fetch
report = client.imbalancereports.fetch()
for imb in report.realtime_imbalances:
    print(imb.sheet_name, imb.moo_total, imb.moc_total)

# High-impact news with volatility scores
for item in client.highimpactarticles.list(limit=3):
    print(item.title, item.volatility_score, item.is_breaking)

print("exercised: articles.list / articles.search / calendarevents.list / imbalancereports.fetch / highimpactarticles.list")
All endpoints · 7 totalmissing one? ·

Fetch the main news feed from FinancialJuice with optional keyword filtering and ID-based pagination. Returns the 20 most recent news items matching the criteria. Pagination advances by passing the last item's ID as old_id to fetch older articles.

Input
ParamTypeDescription
querystringSearch filter keyword for news items. Omitting returns all recent news.
old_idintegerLast news ID for pagination (fetch items older than this ID). Pass 0 or omit to get the latest.
tab_idintegerTab filter ID for category filtering. 0 returns all categories.
Response
{
  "type": "object",
  "fields": {
    "news": "array of news article objects with id, title, description, timestamp, date, labels, and url",
    "count": "integer total number of articles returned"
  },
  "sample": {
    "data": {
      "news": [
        {
          "id": 9630114,
          "url": "https://www.financialjuice.com/News/9630114/Meta-loses-access-to-Manus-data-after-Chinese-buyout-reversed.aspx",
          "date": "2026-06-11T08:08:52.453",
          "title": "Meta loses access to Manus data after Chinese buyout reversed",
          "labels": [],
          "timestamp": "08:08 Jun 11",
          "description": ""
        },
        {
          "id": 9630075,
          "url": "https://www.financialjuice.com/News/9630075/Iran-Foreign-Ministry-US-attacks-render-ceasefire-meaningless.aspx",
          "date": "2026-06-11T07:49:56.313",
          "title": "Iran Foreign Ministry: US attacks render ceasefire 'meaningless'.",
          "labels": [
            "Energy",
            "US Indexes",
            "USD"
          ],
          "timestamp": "07:49 Jun 11",
          "description": ""
        }
      ],
      "count": 20
    },
    "status": "success"
  }
}

About the FinancialJuice API

News Feed and Search

The get_news_feed endpoint returns up to 20 recent news items, each with id, title, description, timestamp, date, labels, and url. It accepts an optional query string for keyword filtering, a tab_id for category-level filtering, and an old_id integer for cursor-based pagination — pass the lowest id from the previous response to fetch older articles. The search_news endpoint offers a dedicated keyword search returning the same article shape plus a query echo field. search_tariffs is a fixed variant that always queries for tariff-related content, useful for workflows that monitor trade policy coverage without managing query state.

Reliability & maintenanceVerified

The FinancialJuice API is a managed, monitored endpoint for financialjuice.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when financialjuice.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official financialjuice.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
15h ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alerting systems that trigger on volatility_score thresholds from get_high_impact_news to flag trades during FOMC or CPI releases
  • Economic event dashboards that display actual vs forecast vs previous from get_economic_calendar for live consensus tracking
  • MOO/MOC imbalance monitors using MOO_Buys, MOO_Sells, MOC_Total fields to gauge opening and closing order flow for S&P 500 and NASDAQ 100
  • Trade-policy research pipelines that call search_tariffs on a schedule to collect and store tariff-related news with timestamps and labels
  • Hourly market briefing bots that consume the summary field from get_hourly_summary and post it to Slack or a messaging interface
  • News archive tools that paginate through get_news_feed using old_id to build a historical dataset of financial headlines with labels
  • Breaking news classifiers that use the is_breaking flag and labels from get_high_impact_news to route stories to different downstream consumers
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does FinancialJuice have an official developer API?+
FinancialJuice does not publish a documented public developer API. The data surfaces covered here — news feed, economic calendar, imbalances, and high-impact scoring — are accessible through this Parse API.
How does `get_high_impact_news` decide what to return?+
The endpoint matches recent headlines against a fixed keyword list including FOMC, FED, CPI, INFLATION, GDP, TARIFF, and TRUMP, then applies a breaking-news boost. Each matching item receives a volatility_score between 1 and 10; only items scoring 3 or above are returned, sorted by score descending. The is_breaking boolean field indicates whether the breaking-news boost was applied.
Can I filter the economic calendar by date range or country?+
get_economic_calendar takes no input parameters and returns all currently scheduled events in a single response. Date-range or country filtering is not currently available. You can fork the API on Parse and revise it to add filtering logic on top of the returned date and country fields.
Does the API return full article body text?+
No endpoint currently returns full article body content. News objects include title, description, labels, timestamp, and url. You can fork the API on Parse and revise it to add an endpoint that fetches article body content from the linked url.
What is the pagination mechanism for the news feed?+
get_news_feed returns at most 20 items per call. To fetch older articles, pass the id of the oldest item in the current response as the old_id parameter on the next call. The endpoint will return up to 20 items with IDs lower than that value. There is no offset or page-number parameter.
Page content last updated . Spec covers 7 endpoints from financialjuice.com.
Related APIs in FinanceSee all →
features.financialjuice.com API
Get live financial news, economic calendar events, and in-depth articles to stay informed on market movements and economic indicators. Search and filter news by stock codes and calendar events to find the financial information most relevant to your trading or investment decisions.
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
jin10.com API
Access real-time financial flash news, economic calendar events, macroeconomic indicators, and article content from jin10.com. Supports search, pagination, and category filtering across all major data types.
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.
forexfactory.com API
Access real-time economic calendar events, market quotes, and financial news from ForexFactory to stay informed on forex market movements and trading opportunities. Retrieve detailed event information, market overviews, and forum discussions to enhance your trading decisions and market analysis.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.