Dashboard

General US market news

GET/api/lookup/news/market

Free Starter Stock ETF Pro

Top US market and business news headlines, merged from multiple public sources. Returns headline, publisher, publication timestamp, and a link to the original article — full article text is not included. Results are deduplicated by title and sorted newest-first.

Best-effort data: Aggregated from third-party news sources without a service-level agreement. Multi-source merge mitigates any single feed degrading, but availability and freshness may change without notice. Use for informational purposes; not suitable for automated trading decisions.

Get API key Try it live in the API explorer

Query parameters

Example request

curl 'https://api.stockfit.io/v1/api/lookup/news/market?limit=20' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Responses

200 OK

Aggregated market news items

Response schema

  • news array of object
    array of:
    • title string

      Article headline

    • link string

      URL to the original article

    • source string | null

      Publisher name (derived from the article hostname)

    • publishedAt string (date-time)

      Publication timestamp in ISO 8601

    • summary string | null

      Short text summary if provided by the feed

Example response

{
  "news": [
    {
      "title": "Stocks close higher as Fed signals patience on rate cuts",
      "link": "https://www.marketwatch.com/story/stocks-close-higher",
      "source": "marketwatch.com",
      "publishedAt": "2026-04-26T20:15:00.000Z",
      "summary": "The S&P 500 rose 0.5% as investors digested..."
    }
  ]
}

400 Bad Request

Invalid parameters

Response schema

  • error string

    Human-readable error message

Example response

{}

403 Forbidden

Feature not available on current plan

Response schema

  • error string

    Human-readable error message

Example response

{}