# Get pull request statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/pulls`

Get pull request statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{"properties":{"mergeable_pulls":{"type":"integer"},"merged_pulls":{"type":"integer"},"total_pulls":{"type":"integer"},"unmergeable_pulls":{"type":"integer"}},"required":["total_pulls","merged_pulls","mergeable_pulls","unmergeable_pulls"],"title":"Enterprise Pull Request Stats","type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url {protocol}://{hostname}/api/v3/enterprise/stats/pulls
```
