Everything you need to get started with wegotit.ai and integrate our API into your applications.
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 evidence from 10+ live intelligence streams (web, real-time news, public discussions, video, visual search, reference and more) and synthesizes a cited answer.
4. Export and share. Export results as Markdown or PDF, or create shareable links to your research.
The wegotit.ai API provides programmatic access to search and synthesis. All authenticated endpoints require a valid session token.
POST /api/searchSearch across multiple data sources.
Request body:
{
"query": "your search query",
"mode": "all" | "web" | "video" | "news" | "images"
}POST /api/synthesizeAI-powered synthesis with multi-source grounding and citations.
Request body:
{
"query": "your query",
"sources": ["web", "video", "news"],
"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/healthPublic health check endpoint. Returns service status and version.
wegotit.ai is open source. View the repository on GitHub.
Need help? Reach out via our Contact page or email ask@wegotit.ai.