Documentation

Everything you need to get started with wegotit.ai and integrate our API into your applications.

Getting Started

1. Create an account — Sign up at wegotit.ai/signup using Google or email.

2. Start searching — Navigate to the Search page and enter a natural language query.

3. Review results — wegotit.ai aggregates results from multiple sources (Google, YouTube, News, Unsplash) and synthesizes an AI-generated answer with citations.

4. Export and share — Export results as Markdown or PDF, or create shareable links to your research.

API Reference

The wegotit.ai API provides programmatic access to search and synthesis. All authenticated endpoints require a valid session token.

POST /api/search

Search across multiple data sources.

Request body:

{
  "query": "your search query",
  "mode": "all" | "google" | "youtube" | "news" | "unsplash"
}
POST /api/synthesize

AI-powered synthesis with multi-source grounding and citations.

Request body:

{
  "query": "your query",
  "sources": ["google-search", "youtube", "newsapi"],
  "sessionId": "optional-session-id-for-follow-ups"
}

Response:

{
  "ok": true,
  "data": {
    "answer": "AI-generated synthesis...",
    "confidence": 0.85,
    "citations": [
      { "index": 1, "title": "...", "url": "...", "source": "...", "snippet": "..." }
    ],
    "sources": { "queried": [...], "succeeded": [...], "failed": [...] },
    "sessionId": "abc123"
  }
}
GET /api/health

Public health check endpoint. Returns service status and version.

Source Code

wegotit.ai is open source. View the repository on GitHub.

Support

Need help? Reach out via our Contact page or email madeinindiaforglobe@gmail.com.

Documentation | wegotit.ai