Skip to main content

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.

API overview

Base URL:
https://api.reposeek.ai
All API responses are JSON.

Endpoints

MethodPathAuthDescription
GET/healthNoAPI health check.
POST/v1/searchYesSearch for open-source repositories matching a natural-language query.

Health check

curl -sS https://api.reposeek.ai/health
Response:
{ "status": "ok" }

Error shape

Expected API errors use this shape:
{
  "error": {
    "code": "invalid_api_key",
    "message": "Invalid API key"
  }
}
Branch on error.code, not error.message.