Documentation Index
Fetch the complete documentation index at: https://docs.reposeek.ai/llms.txt
Use this file to discover all available pages before exploring further.
HTTP and curl
Use any HTTP client that can send JSON and Bearer auth.
curl -sS -X POST "https://api.reposeek.ai/v1/search" \
-H "Authorization: Bearer ${REPOSEEK_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"query":"auth library for nextjs","limit":3}'
Explore in API Playground
Sign in to run this request from your dashboard.
Successful responses contain top-level request_id and results; each result includes stars and forks. Use X-Request-Id for support/debug correlation and response.headers.get("Server-Timing") in clients that need route-level latency.
curl -sS -X POST "https://api.reposeek.ai/v1/search" \
-H "Authorization: Bearer ${REPOSEEK_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"query":"react data table","limit":3}' | jq