Skip to main content

GET /news/local

Get news about a specific city, region, or area. The API automatically appends "local news" to your query to focus results on local sources.

All requests require RapidAPI authentication headers.

Quick Example

curl -X GET "https://fast-news-with-previews.p.rapidapi.com/news/local?query=Tokyo&language=en" \
-H "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
-H "x-rapidapi-host: fast-news-with-previews.p.rapidapi.com"

Parameters

ParameterTypeRequiredDefaultDescription
querystringYes--Area, city, or region name, e.g. "Tokyo", "New York", "Scotland" (1-100 characters)
languagestringNoenLanguage code, e.g. en, de, ja (2-5 characters)
geostringNoallCountry/region code for additional localization, e.g. DE, JP
limitintegerNo10Max articles to return (1-100)
timeframestringNoanytimeTime filter: last_1h, last_24h, last_48h, last_7d, last_30d, anytime

Response

Same article format as all news endpoints. The topic field is always empty.

More Examples

# Local news with geo and timeframe
curl -X GET "https://fast-news-with-previews.p.rapidapi.com/news/local?query=Berlin&language=de&geo=DE&timeframe=last_7d" \
-H "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
-H "x-rapidapi-host: fast-news-with-previews.p.rapidapi.com"

# US city with higher limit
curl -X GET "https://fast-news-with-previews.p.rapidapi.com/news/local?query=Austin+Texas&language=en&limit=15" \
-H "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
-H "x-rapidapi-host: fast-news-with-previews.p.rapidapi.com"

Notes

  • The API appends "local news" automatically — don't include it yourself
  • Results may include news from nearby areas, not just the exact location
  • For best results, pair query with a matching geo code (e.g., query=Munich&geo=DE)

Errors

  • 400 — missing query
  • 503 — search backend temporarily unavailable