# Search the web
$ curl -G https://seek.prim.sh/v1/search \\
-H "X-402-Payment: $TOKEN" \\
--data-urlencode "q=best GPU for LLM inference 2026"
{
"results": [
{
"title": "H100 vs RTX 5090 Benchmarks",
"url": "https://benchmarks.ai/...",
"snippet": "The RTX 5090 offers 70% of H100 performance...",
"published": "2026-01-15"
}
],
"answer": "For inference, RTX 5090 (32GB) is the best value..."
}
# Crawl a page (markdown conversion)
$ curl -G https://seek.prim.sh/v1/extract \\
-H "X-402-Payment: $TOKEN" \\
--data-urlencode "url=https://benchmarks.ai/gpu-review"
Agent needs to verify a claim or find technical specs. seek.sh provides authoritative sources without the SEO fluff.
Turn any URL into clean Markdown. Strips ads, navbars, popups. Just the content the agent needs to read.
"Find latest CVEs for Nginx." Agent runs a daily search, diffs results, and alerts on new vulnerabilities.
Agent scans pricing pages of 5 competitors. extract endpoint turns HTML tables into JSON data.
GET /v1/search # Web search
GET /v1/search/news # News specific search
GET /v1/extract # URL → Markdown
GET /v1/screenshot # URL → Image (for vision models)
| Action | Cost | Notes |
|---|---|---|
| Search query | $0.002 | Per request |
| Extraction | $0.001 | Per URL |
| Screenshot | $0.005 | Full page render |