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

bash
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 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

}'

bash
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 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

}'

Replace YOUR_ANYSEARCH_API_KEY with your actual API key. You can create one for free at the console.