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.

Search result fields

A successful POST /v1/search response has this shape:
{
  "request_id": "req_a1b2c3d4e5f6",
  "results": [
    {
      "rank": 1,
      "repo": "marmelab/react-admin",
      "url": "https://github.com/marmelab/react-admin",
      "score": 0.97,
      "summary": "A frontend framework for building B2B applications on top of REST/GraphQL APIs, using React.",
      "stars": 24000,
      "forks": 5300,
      "license": "MIT"
    }
  ]
}

Top-level fields

FieldTypeMeaning
request_idstringRequest identifier. Include it when reporting issues. Matches X-Request-Id.
resultsarrayRanked repository results. Can be empty.

results[]

FieldTypeMeaning
rankinteger1-based position in the response.
repostringGitHub full name in owner/name format.
urlstringGitHub repository URL.
scorenumberRelevance score for this query. Compare within one response.
summarystring or nullAI-generated or indexed repo summary when available.
starsintegerGitHub stars at indexing time.
forksintegerGitHub forks at indexing time.
licensestring or nullSPDX license identifier when detected.