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

# Depósitos en Ahorros

> Financia tu cuenta de ahorro vía ACH, Wire o cripto

## Métodos de Depósito

<CardGroup cols={3}>
  <Card title="ACH" icon="building">
    **1-3 días hábiles**\
    Bajo costo, bancos de EE.UU.
  </Card>

  <Card title="Wire" icon="gauge-high">
    **Mismo día**\
    Rápido, tarifas más altas
  </Card>

  <Card title="Cripto" icon="coins">
    **Minutos**\
    Envía USDC, conversión automática
  </Card>
</CardGroup>

## Depósitos ACH

Obtén instrucciones ACH:

```bash theme={null}
GET /api/v2/savings/{savingsAccountId}/deposit-instructions/ACH
```

```json Respuesta theme={null}
{
  "type": "ACH",
  "accountNumber": "123456789",
  "routingNumber": "987654321",
  "accountHolderName": "Bridge Bank NA",
  "memo": "ABC123"
}
```

<Warning>
  Los usuarios DEBEN incluir el campo `memo` para que los depósitos se acrediten correctamente.
</Warning>

## Depósitos Wire

```bash theme={null}
GET /api/v2/savings/{savingsAccountId}/deposit-instructions/WIRE
```

## Depósitos Cripto

Obtén dirección de billetera:

```bash theme={null}
GET /api/v2/savings/{savingsAccountId}/crypto-deposit-instructions
```

Los usuarios envían USDC en Polygon, automáticamente convertido a saldo USD.

## Próximos Pasos

<Card title="Retiros" icon="arrow-up" href="/es/guides/savings/withdrawals">
  Aprende cómo retirar fondos
</Card>
