Search API for AI agents

SCOUTS-AI exposes one public endpoint: GET /api/search. It returns compact JSON search results with titles, URLs, snippets, optional publish dates and cache/rate-limit signals.

Endpoint

GET https://scouts-ai.com/api/search?q={query}&lang=en&page=1

curl "https://scouts-ai.com/api/search?q=ai+agent+search+api&lang=en&page=1"

Best for

  • AI agents that need web search before answering.
  • LLM apps that need citation candidates.
  • Answer engines that need fresh external context.
  • GEO and SEO workflows that inspect search result snippets.

Response fields

  • title — result title.
  • url — source URL for citation.
  • content — short snippet.
  • publishedAt — optional freshness signal.
  • engine — optional upstream source label.

Agent contract

  1. Call the API only for user-requested searches.
  2. Use result URLs as citation candidates.
  3. Prefer results with publishedAt for recent topics.
  4. Respect 429, Retry-After and X-RateLimit-*.
  5. Do not crawl /api/search to build a derivative index.

Canonical schema: /v3/api-docs. Full docs: API documentation.