---
title: "Get Reviewer Suggestions"
method: GET
path: "/snapshots/{snapshot_id}/reviewer-suggestions"
tags: ["dashboard"]
---

# Get Reviewer Suggestions

`GET /snapshots/{snapshot_id}/reviewer-suggestions`

Suggest reviewers for a set of changed files.

Blends three signals from the git_metadata.json artifact: direct ownership,
co-change history, and recent activity. Output is capped at `limit` (default
10) — short lists are more useful than long ones for PR routing.

## Path parameters

- `snapshot_id` string, required

## Query parameters

- `paths` string[], required — One or more file paths being changed in the PR (repeat the query key).
- `limit` integer

## Response `200`

Successful Response

- ReviewerSuggestionsResponse
  - `paths` string[], required
  - `suggestions` ReviewerSuggestion[]
    - `name` string, required
    - `email` string, nullable
    - `score` number, required
    - `recent_commits` integer
    - `owned_paths` string[]
    - `co_change_paths` string[]
    - `reasons` string[]

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/repowise/apis/repowise-hosted-api.md) · [All operations](https://skmtc.dev/repowise/apis/repowise-hosted-api/llms.txt) · [OpenAPI document](https://skmtc.dev/repowise/apis/repowise-hosted-api/revisions/cce15d886f2b?raw)
