Skip to main content
GET
/
combined-data
/
git-api
/
pulls
/
forRepo
/
:repoDataId
/
:pullNumber
Get Specific Pull Request
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/git-api/pulls/forRepo/:repoDataId/:pullNumber \
  --header 'bearer: <api-key>'
{
  "pullRequest": {},
  "pullRequest.id": "<string>",
  "pullRequest.number": 123,
  "pullRequest.title": "<string>",
  "pullRequest.body": "<string>",
  "pullRequest.state": "<string>",
  "pullRequest.author": "<string>",
  "pullRequest.createdAt": "<string>",
  "pullRequest.updatedAt": "<string>",
  "pullRequest.mergedAt": "<string>"
}
Retrieve data for a specific pull request.
pullRequest
object
The pull request data object.
pullRequest.id
string
The unique identifier of the pull request.
pullRequest.number
number
The pull request number.
pullRequest.title
string
The title of the pull request.
pullRequest.body
string
The body/description of the pull request.
pullRequest.state
string
The state of the pull request (open, closed, merged).
pullRequest.author
string
The author of the pull request.
pullRequest.createdAt
string
The creation timestamp of the pull request.
pullRequest.updatedAt
string
The last update timestamp of the pull request.
pullRequest.mergedAt
string
The merge timestamp of the pull request.