features.financialjuice.com APIfeatures.financialjuice.com ↗
Access live financial news, economic calendar events, stock tickers, and in-depth articles from FinancialJuice via 6 structured JSON endpoints.
curl -X GET 'https://api.parse.bot/scraper/5b75d611-7d46-4a11-8e9b-1197d46a46c8/get_articles?page=1&per_page=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieves paginated articles from the WordPress REST API. Supports filtering by category ID and search query. Returns articles in reverse chronological order.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| search | string | Search keyword for filtering articles. |
| category | integer | Category ID to filter by (e.g. 73 for Daily Dose, 76 for US). |
| per_page | integer | Number of results per page. |
{
"type": "object",
"fields": {
"data": "array of article objects, each containing id, date, slug, link, title, content, excerpt, categories, and other WordPress post fields",
"status": "string, always 'success'"
},
"sample": {
"data": [
{
"id": 18782,
"date": "2026-04-30T20:37:37",
"link": "https://features.financialjuice.com/2026/04/30/stocks-cap-best-month-since-2020-as-strong-growth-fuels-earnings-optimism-us-market-wrap/",
"slug": "stocks-cap-best-month-since-2020-as-strong-growth-fuels-earnings-optimism-us-market-wrap",
"title": {
"rendered": "Stocks Cap Best Month Since 2020 as Strong Growth Fuels Earnings Optimism – US Market Wrap"
},
"content": {
"rendered": "<p>Signs of resilience...</p>",
"protected": false
},
"categories": [
73,
76
]
}
],
"status": "success"
}
}About the features.financialjuice.com 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.
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.
- Build a real-time financial news ticker using
get_news_feedwith cursor pagination viaold_id - Annotate trading charts with macro events by pulling
Forecast,Actual, andImpIDfromget_economic_calendar - Search historical news coverage for a specific company or topic using
search_newswith a keyword query - Resolve company names to ticker symbols via
get_stock_codesbefore linking instruments to news items - Aggregate long-form financial commentary by category using
get_articleswith thecategoryfilter 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_detailwith aslug
| 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 pagination work in `get_news_feed`?+
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?+
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?+
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.