> For the complete documentation index, see [llms.txt](https://docs.fuspay.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fuspay.finance/collection/assigning-virtual-accounts/check-if-specific-account-is-available-for-use.md).

# Check if specific account is available for use

<mark style="color:blue;">`GET`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/IsPoolAccountAvailable?account_number=xxxx/`

#### Query Parameters

<table><thead><tr><th>Name</th><th width="163">Type</th><th>Description</th></tr></thead><tbody><tr><td>account_number<mark style="color:red;">*</mark></td><td>String</td><td>this is the account number  you are trying to verify </td></tr></tbody></table>

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | partners public key |
| Content-Type<mark style="color:red;">\*</mark>  | String | application/json    |

{% tabs %}
{% tab title="200: OK successful response" %}

```javascript
{
            success: true,
            message: m,
            data: data 
            
 }

//true means account is available for use 
```

{% endtab %}

{% tab title="400: Bad Request failed response" %}

{% endtab %}
{% endtabs %}

#### Example Request- Code&#x20;
