> For the complete documentation index, see [llms.txt](https://developers.admintotal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.admintotal.com/api/cuentas-bancarias.md).

# Cuentas bancarias

## Obtener lista de cuentas bancarias

<mark style="color:blue;">`GET`</mark> `https://{clave}.admintotal.com/api/v2/cuentas_bancarias/`

#### Headers

| Name    | Type   | Description            |
| ------- | ------ | ---------------------- |
| Api-key | String | Token de autenticación |

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

```javascript
{
    "count": 313,
    "next": "https://{clave}.admintotal.com/api/v2/cuentas_bancarias/",
    "previous": null,
    "results": [
        {
            "id": 1530,
            "activo": true,
            "banco": "BANORTE/IXE",
            "clabe": "11111111111111111",
            "saldo_inicial": "1000.00",
            "descripcion": "Cuenta d Prueba",
            "moneda": "MXN",
            "cuenta_contable": "102.01.01",
            "tipo_cuenta": "Tarjeta de débito"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

## Obtener una cuenta bancaria

<mark style="color:blue;">`GET`</mark> `https://{clave}.admintotal.com/api/v2/cuentas_bancarias/:id/`

#### Headers

| Name    | Type   | Description            |
| ------- | ------ | ---------------------- |
| Api-key | String | Token de autenticación |

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

```javascript
{
    "id": 1530,
    "activo": true,
    "banco": "BANORTE/IXE",
    "clabe": "11111111111111111",
    "saldo_inicial": "1000.00",
    "descripcion": "Cuenta d Prueba",
    "moneda": "MXN",
    "cuenta_contable": "102.01.01",
    "tipo_cuenta": "Tarjeta de débito"
}
```

{% endtab %}
{% endtabs %}
