# INCRBYFLOAT

> Increment the float value of a key by a given number.

If a key does not exist, it is initialized as 0 before performing the operation. An error is returned if the key contains a value of the wrong type or contains a string that can not be represented as integer.

## Arguments

<ParamField body="key" type="string"required>
The key to decrement.
</ParamField>
<ParamField body="incrementBy" type="float" required>
The amount to increment by.
</ParamField>


## Response

<ResponseField  type="float" required>
The value at the key after the incrementing.
</ResponseField>

<RequestExample>
```ts Example
await redis.set("key", 6);
await redis.incrbyfloat("key", 4,5);
// returns 10.5
```
</RequestExample>
