Skip to main content
GET
/
api
/
v1
/
repositories
/
{repo_id}
/
impact
Compute transitive blast radius (downstream BFS) for a repository.
curl --request GET \
  --url https://api.example.com/api/v1/repositories/{repo_id}/impact \
  --header 'X-API-Key: <api-key>'
{
  "affected_repositories": [
    {
      "confidence": 123,
      "depth": 123,
      "full_path": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    }
  ],
  "max_depth_reached": 123,
  "source_repository": {},
  "total_affected": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.riftmap.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Headers

X-Workspace-Id
string | null

Path Parameters

repo_id
string<uuid>
required

Query Parameters

max_depth
integer
default:10
Required range: 1 <= x <= 20
min_confidence
number
default:0.8

Minimum edge confidence to traverse. Default 0.8 excludes heuristic findings (0.4–0.7) and only follows deterministic dependency edges. Set to 0.0 to include all edges.

Required range: 0 <= x <= 1

Cookies

riftmap_access
string | null

Response

Successful Response

Full downstream impact of changing a repository.

affected_repositories
AffectedRepository · object[]
required
max_depth_reached
integer
required
source_repository
Source Repository · object
required
total_affected
integer
required