> For the complete documentation index, see [llms.txt](https://docs.shipbubble.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.shipbubble.com/api-reference/wallet/request-wallet-fund.md).

# Request wallet fund

You can utilize this endpoint to create shipping wallet funding request.

{% hint style="warning" %}
This endpoint only works when requesting with your production key
{% endhint %}

<mark style="color:green;">`POST`</mark> `https://api.shipbubble.com/v1/shipping/wallet/fund`

**Body**

| Name     | Type   | Description         |
| -------- | ------ | ------------------- |
| `amount` | number | Amount to be funded |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "status": "success",
    "message": "Retrieved successfully",
    "data": {
        "payment_url": "https://checkout.paystack.com/un58cepyzok34gj"
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
    "status": "failed",
    "message": "Invalid amount provided"
}
```

{% endtab %}
{% endtabs %}
