Quick Start
API Base URL: https://api.anysearch.com
1
Try it anonymously
No account needed. Anonymous requests are rate-limited per client IP and metered against the daily free quota.
curl -X POST https://api.anysearch.com/v1/search \
-H "Content-Type: application/json" \
-d '{
"query": "Go 1.26 release notes",
"tag": "code.doc",
"params": {"library": "golang"},
"max_results": 10
}'2
Get an API key (optional but recommended)
Create a free key at anysearch.com/console/api-keys. Authenticated requests are billed against your paid quota with higher concurrency limits.
3
Send an authenticated request
Replace YOUR_ANYSEARCH_API_KEY with your real key.
curl -X POST https://api.anysearch.com/v1/search \
-H "Authorization: Bearer YOUR_ANYSEARCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "Go 1.26 release notes",
"tag": "code.doc",
"params": {"library": "golang"},
"max_results": 10
}'AI agents handle tag and params routing automatically via MCP or Skill — you only need to think about them for direct API usage.
Next steps#
- Read Authentication to understand anonymous vs. authenticated quota policy.
- Browse Endpoints for the full request/response contract.
- Prefer agent integration? Jump straight to MCP Server or Skill Plugin — both skip manual tag/param selection entirely.
