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

# Get deposit address

Creates an offramp order and returns a crypto deposit address. Once the user sends crypto to this address, it's converted to EUR and loaded onto their Bringin debit card.

Requires a **per-user api-key**.

<ParamField body="sourceCurrency" type="string" required>
  `USDC`, `BTC`, `ETH`, or `USDT`
</ParamField>

<ParamField body="sourceBlockchain" type="string" required>
  `POLYGON`, `BITCOIN`, `ETHEREUM`, or `LIGHTNING`
</ParamField>

<ParamField body="ipAddress" type="string">
  User's IP address. Auto-extracted from headers for non-web apps.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "maximumDepositAmount": "1666667",
    "minimumDepositAmount": "15",
    "address": "0x7D162a2B5e88277F8b51D8548B2BC1a2E89558E7"
  }
  ```
</ResponseExample>

**Supported combinations:**

| Currency | Blockchains            |
| -------- | ---------------------- |
| `USDC`   | `POLYGON`, `ETHEREUM`  |
| `BTC`    | `BITCOIN`, `LIGHTNING` |
| `ETH`    | `ETHEREUM`             |
| `USDT`   | `POLYGON`, `ETHEREUM`  |
