Quick Start
Published
Two steps to plug AI-grade search into your app: grab an API key from the dashboard (or skip it and try the free anonymous tier), then fire your first search request.
API Base URL: https://api.anysearch.com
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
# Note: AI agents handle tag and params routing automatically via MCP or Skill. For direct API usage, select appropriate tag and params for your use case to achieve optimal results.
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
}'
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
# Note: AI agents handle tag and params routing automatically via MCP or Skill. For direct API usage, select appropriate tag and params for your use case to achieve optimal results.
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
}'