skills.vishalvoidskills/vishalvoid
Technical & DevelopmentBeginner

news-search

Search for recent news articles and news metadata.

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/brave/brave-search-skills --skill news-search

Overview

What This Skill Does

Searches Brave's news index for articles, supporting publish time, freshness, and date-range filtering.

Application

When to use this Skill

Documentation

Show Skills.md file

News Search

Requires API Key: Get one at https://api.search.brave.com

Plan: Included in the Search plan. See https://api-dashboard.search.brave.com/app/subscriptions/subscribe

Quick Start (cURL)

Basic Search

curl -s "https://api.search.brave.com/res/v1/news/search?q=space+exploration" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}"

Recent News (Past 24 Hours)

curl -s "https://api.search.brave.com/res/v1/news/search" \
  -H "Accept: application/json" \
  -H "X-Subscription-Token: ${BRAVE_SEARCH_API_KEY}" \
  -G \
  --data-urlencode "q=cybersecurity" \
  --data-urlencode "country=US" \
  --data-urlencode "freshness=pd" \
  --data-urlencode "count=20"
Lines 1 - 26 of 178

Recommendations

Explore other random skills

All skillsMy patterns