List

  • GET
  • /workspaces
  • /:workspace
  • /projects
  • /:project_name
  • /repository
  • /pulls

Returns a list of pull requests in the repository.

Request

REQUIRED SCOPES
REPOSITORY_READ
URL PARAMETERS
workspacerequiredstring
The workspace name.
project_namerequiredstring
The name ID of the project.

Last modified on Jan 19, 2026

Request example

CURL
curl -X GET "https://api.buddy.works/workspaces/:workspace/projects/:project_name/repository/pulls" \ -H "Authorization: Bearer <YOUR-TOKEN>" \ -H "Content-Type: application/json" \

Response

EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/projects/company-website/repository/pulls", "pull_requests": [ { "url": "https://api.buddy.works/workspaces/buddy/projects/company-website/repository/pulls/3", "name": "pull/3", "github_html_url": "https://github.com/orgs/buddy-works/pull-request-repo/pull/3" } ] }