globenewswire.com APIglobenewswire.com ↗
Access GlobeNewswire press releases, earnings announcements, and M&A data via 6 structured endpoints. Filter by industry, date, keyword, or organization.
curl -X GET 'https://api.parse.bot/scraper/863b4735-fc98-4fd5-a7e7-cc66cb6dd8b8/search_press_releases?query=technology&pageSize=10&dateRange=pastMonth' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for press releases by keyword or with various filters. Returns paginated results from GlobeNewswire's search.
| Param | Type | Description |
|---|---|---|
| lang | string | Language code for results. |
| page | integer | Page number for pagination. |
| query | string | Search keyword. When omitted, returns latest press releases. |
| endDate | string | End date for custom range in YYYY-MM-DD format. Used with dateRange='custom'. |
| subject | string | Subject filter value. |
| industry | string | Industry filter value (e.g., 'Financials', 'Consumer Services', 'Industrials'). |
| pageSize | integer | Number of results per page. |
| dateRange | string | Date range preset: 'past24Hours', 'pastWeek', 'pastMonth', or 'custom'. |
| startDate | string | Start date for custom range in YYYY-MM-DD format. Used with dateRange='custom'. |
{
"type": "object",
"fields": {
"url": "string, the search URL used",
"page": "integer, current page number",
"items": "array of press release objects with title, url, date, source, and summary",
"page_size": "integer, results per page"
},
"sample": {
"data": {
"url": "https://www.globenewswire.com/en/search/keyword/AI",
"page": 1,
"items": [
{
"url": "https://www.globenewswire.com/news-release/2026/05/07/3289745/0/en/teads-holding-co-announces-first-quarter-2026-results.html",
"date": "May 07, 2026 06:30 ET",
"title": "Teads Holding Co. Announces First Quarter 2026 Results",
"source": "Teads Holding Co.",
"summary": "NEW YORK, May 07, 2026 (GLOBE NEWSWIRE) -- Teads Holding Co. (Nasdaq: TEAD)..."
}
],
"page_size": 10
},
"status": "success"
}
}About the globenewswire.com API
The GlobeNewswire API provides structured access to press release content across 6 endpoints, covering everything from keyword search to full-text retrieval. With get_press_release_detail, you can pull a release's body_text, ticker, publication_date, contact_info, and keywords for a given URL. Dedicated endpoints for earnings announcements and M&A releases make it straightforward to segment by news type without building your own classification layer.
Search and Browse Press Releases
The search_press_releases endpoint accepts a query string alongside filters for lang, industry, subject, and dateRange. The dateRange parameter accepts presets (past24Hours, pastWeek, pastMonth) or custom when paired with an endDate. Results come back paginated with page and pageSize controls, and each item in the items array includes title, url, date, source, and a summary. When query is omitted, the endpoint returns the latest press releases across all categories.
Full Press Release Content
get_press_release_detail takes a single required url (typically from a search result) and returns the full body_text, title, publication_date, source, ticker, keywords, description, and contact_info. The ticker and keywords fields are especially useful for associating a release with a specific publicly traded company or sector without parsing the body manually.
Specialized Feeds: Earnings and M&A
search_earnings_announcements and search_ma_press_releases are purpose-built endpoints that filter the press release corpus to operating-results and merger-and-acquisition content respectively. Both support page and pageSize pagination and return the same items structure as the general search. browse_by_industry narrows results by industry_slug — accepted values include Financials, Consumer Services, and Industrials, among others.
Organization RSS Feeds
get_rss_feed_by_organization takes a base64-encoded org_id and returns a structured feed with title, link, description, pubDate, identifier, contributor, keywords, and categories per item, plus a feed_title for the organization. Note that numeric organization IDs are not accepted — the parameter requires the base64-encoded form.
- Monitor earnings announcements for a portfolio of tickers using
search_earnings_announcementscombined withget_press_release_detailto extracttickerandbody_text. - Build an M&A deal tracker by polling
search_ma_press_releasesand parsingsource,date, andsummaryfor each new release. - Index full press release content by industry using
browse_by_industrywithindustry_slugvalues likeFinancialsorIndustrials. - Set up organization-level news alerts by querying
get_rss_feed_by_organizationwith a knownorg_idand comparingpubDateagainst your last-seen timestamp. - Feed a financial NLP pipeline with structured
body_textandkeywordsfromget_press_release_detailto extract named entities and sentiment. - Track news volume by sector and date window using
search_press_releaseswithindustryanddateRangefilters. - Correlate press release timing with stock price movements by joining
tickerandpublication_datefields against a market data feed.
| 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 GlobeNewswire have an official developer API?+
What does `get_press_release_detail` return beyond what the search endpoints provide?+
title, url, date, source, and summary. get_press_release_detail adds body_text (full release text), ticker, keywords, contact_info, description, and publication_date. If you need the actual body of the release or the associated stock ticker, you need to call this endpoint with the URL from the search result.How do I look up press releases for a specific organization?+
get_rss_feed_by_organization retrieves feed items for a single organization using a base64-encoded org_id. The endpoint does not accept plain numeric IDs. If you have a numeric organization ID from another source, you will need to base64-encode it before passing it as org_id. The feed response includes feed_title, pubDate, contributor, keywords, and categories per item.Can I filter press releases by country or region?+
search_press_releases endpoint accepts a lang parameter for language filtering, but there is no explicit country or region filter exposed in the current API. You can fork this API on Parse and revise it to add a region-based filter endpoint if your use case requires geographic segmentation.Does the API expose historical press releases beyond the preset date ranges?+
dateRange parameter on search_press_releases supports presets up to pastMonth and a custom range when combined with endDate. Deep historical archive retrieval with arbitrary start dates is not currently supported as a dedicated endpoint. You can fork this API on Parse and revise it to add a wider historical search endpoint covering earlier date ranges.