DeepTap

Quick start — first search

Send your first DeepTap request in under a minute.

1. Get an API key

Sign in at app.deeptap.ai with your email. The dashboard issues a one-time plaintext key on creation; copy it now, DeepTap only stores a SHA-256 hash.

curl https://api.deeptap.ai/v1/search \
  -H "authorization: Bearer $DEEPTAP_API_KEY" \
  -H "content-type: application/json" \
  -d '{"query": "who invented sqlite", "depth": 1}'

Response (truncated):

{
  "query": "who invented sqlite",
  "depth": 1,
  "results": [
    {
      "url": "https://www.sqlite.org/crew.html",
      "title": "The Crew That Wrote SQLite",
      "snippet": "D. Richard Hipp created SQLite in 2000...",
      "rerank_score": 0.94
    }
  ],
  "credits_used": 1,
  "rate_limit": {"limit": 10, "remaining": 9, "reset_ms": 1200}
}

3. Extract a page

curl https://api.deeptap.ai/v1/extract \
  -H "authorization: Bearer $DEEPTAP_API_KEY" \
  -H "content-type: application/json" \
  -d '{"url": "https://www.sqlite.org/crew.html", "mode": "excerpt"}'

4. Next steps