financialjuice.com APIfinancialjuice.com ↗
Access FinancialJuice financial news, economic calendar, MOO/MOC imbalances, and high-impact news scoring via 7 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/1ffd7dde-1ef5-44de-aeeb-4e70d73df082/get_news_feed' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch the main news feed from FinancialJuice with optional search filtering and pagination. Returns the 20 most recent news items matching the criteria.
| Param | Type | Description |
|---|---|---|
| query | string | Search filter keyword for news items. Omitting returns all recent news. |
| old_id | integer | Last news ID for pagination (fetch items older than this ID). |
| tab_id | integer | Tab filter ID for category filtering. |
{
"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": 9588271,
"url": "https://www.financialjuice.com/News/9588271/Chinas-President-Xi-is-going-to-visit-the-US-in-the-Autumn---Xinhua.aspx",
"date": "2026-05-15T14:03:16.66",
"title": "China's President Xi is going to visit the US in the Autumn - Xinhua.",
"labels": [
"China",
"CNY",
"US Bonds",
"US Indexes",
"USD"
],
"timestamp": "14:03 May 15",
"description": ""
}
],
"count": 20
},
"status": "success"
}
}About the financialjuice.com 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.
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.
- Alerting systems that trigger on
volatility_scorethresholds fromget_high_impact_newsto flag trades during FOMC or CPI releases - Economic event dashboards that display
actualvsforecastvspreviousfromget_economic_calendarfor live consensus tracking - MOO/MOC imbalance monitors using
MOO_Buys,MOO_Sells,MOC_Totalfields to gauge opening and closing order flow for S&P 500 and NASDAQ 100 - Trade-policy research pipelines that call
search_tariffson a schedule to collect and store tariff-related news with timestamps and labels - Hourly market briefing bots that consume the
summaryfield fromget_hourly_summaryand post it to Slack or a messaging interface - News archive tools that paginate through
get_news_feedusingold_idto build a historical dataset of financial headlines with labels - Breaking news classifiers that use the
is_breakingflag andlabelsfromget_high_impact_newsto route stories to different downstream consumers
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does FinancialJuice have an official developer API?+
How does `get_high_impact_news` decide what to return?+
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?+
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.