> For the complete documentation index, see [llms.txt](https://doc.blowhorn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.blowhorn.com/api-docs/drivers/driver-balance.md).

# Driver Balance

## Driver current balance

<mark style="color:blue;">`GET`</mark> `/api/drivers/balance`

Use this api to get the status and the balance amount the driver has with respect to the deliveries that he has done as well as from the balance of cash on deliveries and others.\
This is done by providing the api key and the specific driver's id.

#### Query Parameters

| Name     | Type   | Description    |
| -------- | ------ | -------------- |
| driverId | string | Pass driver ID |

#### Headers

| Name     | Type   | Description       |
| -------- | ------ | ----------------- |
| API\_KEY | string | Enter the API Key |

{% tabs %}
{% tab title="200 Driver current balance" %}

```
{
  "status": "PASS",
  "message": {
    "balance_amount": 4500.12
  }
}
```

{% endtab %}

{% tab title="400 Malformed data or missing required parameter values" %}

```
{
  "status": "FAIL",
  "message": "Driver Details Not Found, you can use drivereligilibity api to get detailed information"
}
```

{% endtab %}

{% tab title="401 Unauthorized / Wrong API key" %}

```
{
  "status": "string",
  "message": "string"
}
```

{% endtab %}

{% tab title="500 Unexpected error" %}

```
{
  "status": "string",
  "message": "string"
}
```

{% endtab %}
{% endtabs %}
