Google News results

by DataForSEO

dataforseo/serp_google_news_live

Return news search results for a keyword in a given market.

Billed per
call
Price
Price: $0.0024
Provider
DataForSEO
Timeout
3 min

Overview

Queries the news vertical and returns the ranked articles it surfaces as structured records. Each carries the headline, publisher domain, article URL, snippet, and publication timestamp, along with its position, so coverage can be tracked over time or compared between publishers. Results are market-specific: the location and language select which regional edition is queried, which changes both the outlets shown and their ordering. The prominently featured stories block is reported separately from the ordinary result list.

One results page of news items with their headline, publisher, URL, snippet, timestamp, and rank.

Input

These go in the input object of the run request.

FieldTypeRequiredDescription
keywordstringYesThe search query to run, up to 700 characters.
location_codeintegerYesWhich market to search from.
language_codestringYesInterface and result language.
depthintegerNoHow many results to parse.
Default: 10
Maximum: 200
osstringNoWhich desktop operating system to emulate.
Allowed: windows, macos
Default: "windows"

Requests up to 1 MB.

Example

Use your own API key and a saved idempotency key for each new job. Replace image or media placeholders with your own publicly reachable HTTPS URLs. Keep the same key and request body when recovering a timeout.

# Set once per job; reuse this key and the identical body after a timeout.
: "${AGENTSKY_IDEMPOTENCY_KEY:?Set a unique, saved key for this job}"
curl --fail-with-body https://gateway.agentsky.dev/v1/run \
  -H "authorization: Bearer $AGENTSKY_API_KEY" \
  -H "content-type: application/json" \
  -H "Idempotency-Key: $AGENTSKY_IDEMPOTENCY_KEY" \
  -d '{"provider":"dataforseo","endpoint":"serp_google_news_live","input":{"keyword":"electric vehicles","location_code":2840,"language_code":"en","depth":20}}'
# If status is READY/RUNNING, poll GET /v1/runs/{runId} with the same API key.

Pricing

$0.0024 per call using your plan when signed in. Reported usage is billed under your account plan. Read the final customer charge from price.amount.value after the run finishes. A RUNNING response is not the final bill.

Questions