Skip to main content

searchapi-best-practices

Master reference for SearchApi.io, the comprehensive guide an agent consults whenever it needs depth on any SearchApi capability that another skill didn't already cover. Covers authentication (API key, MCP, Bearer header), every engine family with key params and gotchas, locale handling, paginati...

Install this skill

or
85/100

Security score

The searchapi-best-practices skill was audited on Aug 6, 2026 and we found 3 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

medium line 50

Curl to non-GitHub URL

SourceSKILL.md
48
49```bash
50curl -s "https://www.searchapi.io/api/v1/search?engine=google&q=hello&api_key=$SEARCHAPI_API_KEY"
51```
52
medium line 162

Curl to non-GitHub URL

SourceSKILL.md
160
161```bash
162curl -s -X POST "https://www.searchapi.io/api/v1/search" \
163 -H "Authorization: Bearer $SEARCHAPI_API_KEY" \
164 -H "Content-Type: application/json" \
medium line 580

Curl to non-GitHub URL

SourceSKILL.md
578**Base call:**
579```bash
580curl -s "https://www.searchapi.io/api/v1/search?engine=<engine>&q=<query>&api_key=$SEARCHAPI_API_KEY"
581```
582`engine=google` is the REST path. Over MCP, plain search is the tool `google_search_light` (REST engine `google_light`).
Scanned on Aug 6, 2026
View Security Dashboard
Installation guide →
GitHub Stars 1
Rate this skill
Categorydevelopment
UpdatedAugust 9, 2026
SamJale/SearchApi-Claude-Plugin