API quickstart
Find repos with evidence attached.
Use Reposeek when an agent or developer needs to choose the right library, starter, SDK, tool, example, or app before implementation starts.
Launch notes
- Create an account to generate API keys from the dashboard.
- Free Trial includes 100 searches total.
- Pro includes 1,000 searches per month and up to 5 API keys.
01 / Quickstart
Search
Set a placeholder environment variable, then call the hosted search endpoint. Replace the placeholder with a dashboard-generated key before running it locally.
curl.sh
shell
scroll →
REPOSEEK_API_KEY=paste_your_api_key_here
curl -sS -X POST "https://api.reposeek.ai/v1/search" \
-H "Authorization: Bearer $REPOSEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"react admin dashboard","limit":3}'scroll →
02 / API
Response shape
POST JSON to https://api.reposeek.ai/v1/search with a query and limit. Results include repository metadata and a summary explaining the match.
response.json
json
scroll →
{
"query": "react admin dashboard",
"results": [
{
"repo": "owner/repo",
"url": "https://github.com/owner/repo",
"score": 0.91,
"stars": 1200,
"license": "MIT",
"summary": "Why this repository matches..."
}
]
}scroll →
03 / Examples
What to ask Reposeek
Keep queries concise and specific to the implementation decision you need to make.
Find React admin dashboards with maintained auth and table patterns.
Compare Stripe starter kits before an agent writes billing code.
Surface SDK examples for an unfamiliar API before implementation starts.
All snippets use placeholders such as REPOSEEK_API_KEY=paste_your_api_key_here. Never paste a real API key into documentation, commits, or support messages.