> For the complete documentation index, see [llms.txt](https://docs.bancor.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bancor.network/developer-guides/read-functions/withdrawals/withdrawalrequestcount.md).

# withdrawalRequestCount()

### Function withdrawalRequestCount()

{% code title="PendingWithdrawals.sol" %}

```javascript
function withdrawalRequestCount(address provider) external view returns (uint256)
```

{% endcode %}

This function gets the number of pending withdrawals for agiven address.

### Function Arguments

| Name     | Type    | Description                                                     |
| -------- | ------- | --------------------------------------------------------------- |
| provider | address | The address for which to get the number of pending withdrawals. |

### Return Variables

This function returns the number of pending withdrawals.&#x20;

| Variable Type | Returns                                                                         |
| ------------- | ------------------------------------------------------------------------------- |
| uint256       | The returned amount is the number of pending withdrawals for the given address. |
