---
title: "Get Account Details"
method: GET
path: "/v1/account"
tags: ["Account"]
---

# Get Account Details

`GET /v1/account`

Retrieves account details including balance and legal entity information. Supports both PF (Pessoa Física - natural person) and PJ (Pessoa Jurídica - legal entity) accounts. For PF accounts, the legal_name field contains the person's name and trading_name is omitted. For PJ accounts, legal_name contains the company name and trading_name contains the trading name.

## Response `200`

Account details retrieved successfully

- ExternalApiAccountsResponse
  - `accounts` ExternalApiAccountDto[], required
    - `account_name` string, required
    - `account_number` string, required
    - `account_type` 'checking_account' | 'savings_account' | 'prepaid_payment_account' | 'payment_account' | 'other', required
    - `balance` ExternalApiBalanceDto, required
      - `amount_in_cents` integer, required
      - `currency` string, required
    - `branch` string, required
    - `created_at` string, date-time, required — Account creation timestamp (UTC, RFC 3339).
    - `id` integer, required
    - `legal_entity` ExternalApiLegalEntityDto, required
      - `address` ExternalApiAddressDto, required
        - `city` string, required
        - `complement` string, nullable
        - `country` string, required
        - `neighborhood` string, required
        - `number` string, required
        - `postal_code` string, required
        - `state` string, required
        - `street` string, required
      - `legal_name` string, required
      - `tax_id` ExternalApiTaxIdDto, required
        - `number` string, required
      - `trading_name` string, nullable
    - `status` 'active' | 'inactive', required
    - `updated_at` string, date-time, required — Account last update timestamp (UTC, RFC 3339).

## Other responses

- `401` — Authentication failed
- `403` — Access denied
- `404` — No account found
- `500` — Internal server error

---

[API](https://skmtc.net/kiwify/apis/conta-digital-api.md) · [All operations](https://skmtc.net/kiwify/apis/conta-digital-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kiwify/conta-digital-api/revisions/eea178ae3207/schema)
