Discover/FinancialJuice API
live

FinancialJuice APIfeatures.financialjuice.com

Access live financial news, economic calendar events, stock tickers, and in-depth articles from FinancialJuice via 6 structured JSON endpoints.

Endpoint health
verified 12h ago
get_articles
get_news_feed
get_stock_codes
get_article_detail
get_economic_calendar
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the FinancialJuice API?

The FinancialJuice API exposes 6 endpoints covering live news items, economic calendar events, stock ticker lookup, and full article content. The get_news_feed endpoint returns a real-time stream of news items with fields like NewsID, Title, DatePublished, Level, and Labels, while get_economic_calendar delivers upcoming data releases with Forecast, Previous, Actual, and ImpID fields for impact scoring.

Try it
Page number for pagination.
Search keyword for filtering articles by title/content.
Category ID to filter by. Known IDs: 73 (Daily Dose), 76 (US), 77 (EU).
Number of results per page (1-100).
api.parse.bot/scraper/5b75d611-7d46-4a11-8e9b-1197d46a46c8/<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/5b75d611-7d46-4a11-8e9b-1197d46a46c8/get_articles?page=1&search=market&category=73&per_page=3' \
  -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 features-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.

"""Walkthrough: FinancialJuice SDK — bounded, re-runnable; every call capped."""
from parse_apis.financialjuice_api import FinancialJuice, Category, ArticleNotFound

client = FinancialJuice()

# List recent articles filtered to Daily Dose category
for article in client.articles.list(category=Category._73, limit=3):
    print(article.title, article.date, article.views)

# Search news for a market topic
for item in client.newsitems.search(query="inflation", limit=5):
    print(item.title, item.date_published, item.source)

# Get the live news feed (latest headlines)
headline = client.newsitems.list(limit=1).first()
if headline:
    print(headline.title, headline.level)

# Look up a stock ticker
for stock in client.stocks.search(query="Tesla", limit=3):
    print(stock.ticker, stock.name, stock.exchange)

# Get upcoming economic calendar events
for event in client.calendarevents.list(limit=3):
    print(event.title, event.date, event.country_code, event.forecast)

# Typed error: fetch an article that may not exist
try:
    detail = client.articles.list(search="unlikely-xyz-query-999", limit=1).first()
    if detail:
        print(detail.title, detail.slug)
except ArticleNotFound as exc:
    print(f"Article not found: {exc}")

print("exercised: articles.list / newsitems.search / newsitems.list / stocks.search / calendarevents.list")
All endpoints · 6 totalmissing one? ·

Retrieves paginated articles from the WordPress REST API in reverse chronological order. Supports filtering by category ID and free-text search. Each article includes rendered title, content HTML, excerpt, publication date, slug, and category IDs. Pagination uses integer page numbers; the default page size is 10.

Input
ParamTypeDescription
pageintegerPage number for pagination.
searchstringSearch keyword for filtering articles by title/content.
categoryintegerCategory ID to filter by. Known IDs: 73 (Daily Dose), 76 (US), 77 (EU).
per_pageintegerNumber of results per page (1-100).
Response
{
  "type": "object",
  "fields": {
    "items": "array of article objects with id, date, slug, link, title, content, excerpt, categories, views"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 19370,
          "date": "2026-06-10T20:09:06",
          "link": "https://features.financialjuice.com/2026/06/10/stocks-hit-five-week-low-as-tech-selloff-oil-rise-weigh-us-market-wrap/",
          "slug": "stocks-hit-five-week-low-as-tech-selloff-oil-rise-weigh-us-market-wrap",
          "title": {
            "rendered": "Stocks Hit Five-Week Low as Tech Selloff, Oil Rise Weigh - US Market Wrap"
          },
          "views": 43412,
          "excerpt": {
            "rendered": "Stocks fell, oil rose, yields climbed..."
          },
          "categories": [
            73,
            76
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the FinancialJuice API

News Feed and Search

The get_news_feed endpoint returns the latest financial news items in reverse chronological order. It supports cursor-based pagination via the old_id parameter — pass the lowest NewsID seen in the previous response to page backward through history, or pass 0 to start from the most recent items. Each news object includes NewsID, Title, DatePublished, Level, Labels, and FCName. The search_news endpoint accepts a required query string and returns matching news items sorted by recency, using the same response shape.

Economic Calendar

get_economic_calendar requires no input parameters and returns the full upcoming schedule of economic events. Each event object includes Date, Title, CountryCode, Forecast, Previous, Actual, and ImpID, making it suitable for building pre-event alerts or annotating charts with macro catalysts. Events cover data releases, central bank speeches, and market holidays.

Articles and Long-Form Content

The get_articles endpoint retrieves paginated WordPress-backed articles. You can filter by category ID (for example, 73 for Daily Dose or 76 for US), pass a search string, and control page size via per_page. Results include id, date, slug, link, title, content, excerpt, and categories. To fetch a single article's full content, use get_article_detail with either article_id or slug — at least one is required.

Stock Code Lookup

get_stock_codes accepts an optional query string (such as 'Apple', 'Tesla', or 'gold') and returns matching instruments. Each result includes id (the ticker symbol), label (company name), exc (exchange), ResultType, and Rid. This is useful for resolving human-readable company names to ticker symbols before filtering news by instrument.

Reliability & maintenanceVerified

The FinancialJuice API is a managed, monitored endpoint for features.financialjuice.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when features.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 features.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
12h ago
Latest check
6/6 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
  • Build a real-time financial news ticker using get_news_feed with cursor pagination via old_id
  • Annotate trading charts with macro events by pulling Forecast, Actual, and ImpID from get_economic_calendar
  • Search historical news coverage for a specific company or topic using search_news with a keyword query
  • Resolve company names to ticker symbols via get_stock_codes before linking instruments to news items
  • Aggregate long-form financial commentary by category using get_articles with the category filter parameter
  • Set pre-release alerts for high-impact economic events by filtering calendar results on ImpID
  • Fetch full article body content for NLP or summarization pipelines using get_article_detail with a slug
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. This Parse API provides structured programmatic access to the same live news, calendar, and article data available on the site.
How does pagination work in `get_news_feed`?+
The endpoint uses cursor-based pagination. Pass old_id=0 to retrieve the latest news items. For subsequent pages, pass the lowest NewsID from the previous response as old_id. This approach is more stable than offset pagination for live feeds where new items are continuously added at the top.
What does the `Level` field in news items indicate?+
The Level field on news objects from get_news_feed and search_news represents the priority or impact classification of a news item as assigned by FinancialJuice. Higher levels typically correspond to more market-moving headlines. The Labels and FCName fields provide additional categorization and source attribution.
Does the economic calendar endpoint return historical event data?+
get_economic_calendar returns upcoming events. Historical calendar data — past releases with final Actual values across extended date ranges — is not currently covered. You can fork this API on Parse and revise it to add a historical calendar endpoint if your use case requires back-data.
Can I filter news items by stock ticker or country code directly in the news feed?+
The get_news_feed endpoint does not accept ticker or country filter parameters directly — filtering is limited to cursor pagination via old_id. search_news accepts a free-text query which can include a ticker symbol. You can fork this API on Parse and revise it to add ticker- or country-scoped news filtering endpoints.
Page content last updated . Spec covers 6 endpoints from features.financialjuice.com.
Related APIs in FinanceSee all →
financialjuice.com API
Access real-time financial news, economic calendar events, market imbalances, and high-impact news analysis to stay informed on market-moving developments and tariff changes. Search and filter news by topic, review hourly market summaries, and identify economic events that could affect your trading and 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.
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.
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.
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.
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.
uk.investing.com API
Access real-time economic events, indicators, and market holidays to stay informed about upcoming financial releases and market closures. Monitor key economic data points and plan your trading strategy around important calendar events and scheduled market breaks.
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.