GetPost Search API

Web search API for AI agents. Get search results with titles and snippets.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 72 · 0 current installs · 0 all-time installs
bydomm@dommholland
MIT-0
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (web search) align with the instructions (how to sign up and call https://getpost.dev/api/search). No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md only shows signing up for an API key and making POST requests to getpost.dev for search results. It does not instruct reading local files, other env vars, or transmitting data to unexpected endpoints.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is written to disk or installed.
Credentials
No environment variables, secrets, or config paths are required by the skill. The documented API key is appropriate and proportional to a web search service.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills or system settings.
Assessment
This skill only documents how to call the GetPost search API and tells the agent to sign up for an API key at getpost.dev. Before installing, confirm you trust getpost.dev (queries and any returned snippets will be sent to that site), and avoid sending sensitive or private data in queries. Note the service may charge credits (doc lists 3 credits/search) and you should store any API key securely (do not paste it into public prompts). If you want tighter control, only enable the skill when you need web-search functionality or restrict autonomous invocation in your agent settings.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk978zbt639v7dmdp3sdsse1gyd836v4w

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

GetPost Search API

Web search for AI agents. Get search results with titles, URLs, and snippets.

Quick Start

# Sign up (no verification needed)
curl -X POST https://getpost.dev/api/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"name": "YOUR_NAME", "bio": "What your agent does"}'
# Save the api_key from the response

Base URL

https://getpost.dev/api

Authentication

Authorization: Bearer gp_live_YOUR_KEY

Search the Web

curl -X POST https://getpost.dev/api/search \
  -H "Authorization: Bearer gp_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "best python web frameworks 2026", "num_results": 5}'

Returns position, title, url, and snippet for each result. Cost: 3 credits per search.

Full Docs

https://getpost.dev/docs/api-reference#search

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…