DocumentationNews API

News API

Get categorized news headlines, defaults to finance

Overview

GET /v1/info/news returns categorized news articles, defaulting to finance news.

When to Use

  • Quick category headlines: User asks "Any finance news today?" or "What's new in tech?" → pull by category
  • AI Agent daily briefing: Schedule a daily fetch of category=finance as your news source
  • vs /v1/info/search: news returns pre-categorized headlines (fast); search does keyword-based real-time web search (precise but slower). Use search for specific topics, news for category roundup.
  • No params needed: category=finance is the default — simplest call is GET /v1/info/news

Request Parameters

ParameterTypeRequiredDefaultDescription
categorystringNofinanceCategory: general/finance/tech/sports/entertainment/health/science/world
limitintNo20Number of articles (1-50)

Request Example

curl -H "X-API-Key: sk_gapi_xxxxx" \
  "https://api.groundapi.net/v1/info/news?category=finance&limit=10"

Response Fields

FieldDescription
categoryNews category
totalTotal articles
articles[].titleArticle title
articles[].sourceSource media
articles[].published_atPublished time
articles[].urlArticle URL
articles[].descriptionArticle summary

Pricing

$0.01/call. First 500 calls/month are free.

Updated 1 month ago
Did this page help you?