{% extends "docs/base.html" %} {% block docs_content %}
List fork records for a given upstream repo.
GET /api/v1/teams/{team_slug}/repos/{repo_slug}/forks
GET /api/v1/users/{username}/repos/{repo_slug}/forks
Query parameters: page, per_page.
curl \
--header "Authorization: Bearer $PEARING_API_TOKEN" \
"$PEARING_API_URL/v1/teams/platform/repos/website/forks"
200 OK with a paginated list of fork records. Each fork includes created_by_uuid and created_by_username.
{
"results": [
{
"uuid": "...",
"created_by_uuid": "...",
"created_by_username": "alice",
"status": "completed",
"created_at": "2026-03-09T12:00:00Z"
}
],
"next": null,
"previous": null
}
403 Forbidden when caller lacks access to upstream repo.404 Not Found when upstream repo is not found.Common auth errors are documented on the API overview page.