Skip to main content
Planned MCP tool: news_browse — use it from Claude, Cursor, or another MCP client after launch. See MCP Server for setup.
Coming Soon   1 credit per call

What it does for your agent

news_browse gives your agent recent company news with concise titles, abstracts, and detailed summaries. Use exact filters to scan the market, follow companies, or find specific event and topic combinations. Availability varies by company and date. Start with a recent query, then narrow the results with exact filters.

Response

data
object
required
The matching news items and returned count.
meta.creditsUsed
number
Always 1 after a valid query runs, including an empty result.
meta.remainingCredits
number
Account credits remaining.
meta.notice
string
Present when no data matches or more items exist beyond limit.
200 OK · news_browse
{
  "data": {
    "items": [
      {
        "news_article_id": "2bb83823-9f85-40ed-a51a-34f67d41a6af",
        "title": "NVIDIA Announces Q1 Results",
        "abstract": "NVIDIA reported quarterly results and described demand across its major businesses.",
        "summary": "NVIDIA reported quarterly performance and provided updated guidance for the next period.",
        "events": ["earnings", "guidance"],
        "topics": ["artificial_intelligence", "semiconductors"],
        "tickers": ["NVDA"],
        "published_at": "2026-06-01"
      }
    ],
    "count": 1
  },
  "meta": { "creditsUsed": 1, "remainingCredits": 99 }
}

Notes

Start without filters for recent market activity. Then combine tickers, events, and topics to narrow the result set.
Availability varies by company, date, and category. A valid query can return no items when nothing matches the selected filters.
Every valid query costs 1 credit, even when no items match. Invalid requests and service errors do not consume credits.

Direct invocation

{
  "method": "tools/call",
  "params": {
    "name": "news_browse",
    "arguments": {
      "tickers": ["NVDA"],
      "events": ["earnings", "guidance"],
      "limit": 5
    }
  }
}
import os, requests

resp = requests.get(
    "https://api.llmquantdata.com/api/news/browse",
    headers={"Authorization": f"Bearer {os.environ['LLMQUANT_API_KEY']}"},
    params={"tickers": "NVDA", "events": "earnings,guidance", "limit": 5},
).json()

for item in resp["data"]["items"]:
    print(item["published_at"], item["title"])
curl "https://api.llmquantdata.com/api/news/browse?tickers=NVDA&events=earnings,guidance&limit=5" \
  -H "Authorization: Bearer $LLMQUANT_API_KEY"

Full parameter reference

tickers
string
Comma-separated equity symbols. Values use OR logic. Maximum: 5.
events
string
Comma-separated event values. Values use OR logic. Supported values: earnings, guidance, m_and_a, partnership, product, regulatory_approval, regulatory, legal, leadership_change, workforce, restructuring, bankruptcy, capital_action, credit_rating, analyst_rating, accounting_audit, operational_incident, shareholder_meeting, strategic_update, other.
topics
string
Comma-separated subject topics. Values use OR logic. Supported values: semiconductors, software, cloud_computing, cybersecurity, artificial_intelligence, consumer_electronics, it_hardware_networking, telecommunications, media_entertainment, internet_services, biotech_pharma, medical_devices, life_sciences_tools, healthcare_services, banking, capital_markets, insurance, fintech, crypto_digital_assets, real_estate, automotive, retail, consumer_packaged_goods, apparel_luxury, restaurants_leisure, aerospace_defense, industrial_machinery, transportation_logistics, construction_engineering, business_services, oil_gas, renewable_energy, utilities, metals_mining, chemicals, agriculture_food_production, paper_packaging_forestry, environmental_services, space_economy, quantum_computing, data_centers, macroeconomics_policy, geopolitics_trade.
start_date
string
Inclusive UTC start date in YYYY-MM-DD format. Requires end_date.
end_date
string
Inclusive UTC end date in YYYY-MM-DD format. Requires start_date.
limit
number
default:10
Maximum items returned. Range: 1–25.
Parameters use AND logic across fields and OR logic within tickers, events, or topics. All parameters are optional, so an empty query returns recent market activity.

Authentication

Create an API key and authenticate direct HTTP requests.

MCP Server setup

Connect Claude, Cursor, or another agent harness in 60 seconds.