> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crown-brlv.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Depositing BRL Funds

> Learn how to deposit Brazilian Real (BRL) into your Crown account

## Overview

You can deposit BRL funds into your Crown account using PIX, PIX (QR Code), or TED. Once deposited, these funds become available in your account balance and can be used for conversions to tokenized assets.

<Note>
  You will receive an email notification once your deposit has been processed and credited to your account.
</Note>

## Getting Your Deposit Information

To deposit BRL funds, you need to get your unique bank account details from the Crown dashboard.

### Step 1: Access the Deposit Modal

Navigate to your BRL balance card in the Crown dashboard and click the **Deposit** button.

### Step 2: Choose Your Deposit Method

A modal will appear with three tabs for different deposit methods: **PIX**, **PIX (QRCODE)**, and **TED**.

#### PIX Deposit

Select the **PIX** tab to view your PIX deposit details:

You'll see:

* **Bank**: 665
* **Branch**: 0001
* **Account**: Your unique account number

Use these details to make a PIX transfer from your bank.

#### TED Deposit

Select the **TED** tab to view your TED deposit details:

You'll see:

* **Bank**: 665
* **Branch**: Your unique branch number
* **Account**: Your unique account number

Use these details to make a TED transfer from your bank.

<Warning>
  Make sure to use the correct account details provided in your Crown dashboard. Each account has unique identifiers.
</Warning>

## Tracking Your Deposits

After initiating a deposit, you can track its status using the API:

```bash theme={null}
curl -X GET https://app.crown-brlv.com/api/v0/assets/brl/deposits \
  -H "X-API-Key: your_api_key" \
  -H "Authorization: Bearer your_jwt_token"
```

You can also [set up webhooks](/guides/webhooks-setup) and listen to the [deposit-processed webhook](/api-reference/webhooks/deposit-processed) to receive real-time notifications when deposits are processed.

## Deposit Status

Deposits go through the following states:

* `pending` - Deposit has been initiated but not yet confirmed
* `processing` - Deposit is being processed
* `completed` - Deposit has been successfully credited to your account

## Using Deposited Funds

Once your BRL deposit is completed, the funds are available in your account balance. You can:

1. Check your balance using the [Get Balance endpoint](/api-reference/endpoint/balance/get-balance)
2. Use the funds to convert to tokens following the [Asset Conversions guide](/guides/conversions)
