# Retrieve the account

`GET https://api.cademi.com.br/api/v3/account`

Operation ID: `account.get` · API v3

Returns a read-only overview of the account associated with the current credentials: identity, student quota, billing status, and replica and sandbox relationships.

Billing information does not include amounts, plan details, or payment methods.

Requires the `account.read` permission.

Required permissions: `account.read`.

## Responses

### 200

Returns the account.

Body: `data`: Account.

Fields of Account:

| Field | Type | Required | Description |
|---|---|---|---|
| `billing` | object | yes |  |
| `created_at` | string or null (date-time) | yes |  |
| `domain_id` | string or null | yes |  |
| `environment` | string, one of `production`, `sandbox` | yes |  |
| `id` | string | yes |  |
| `name` | string | yes |  |
| `object` | string, one of `account` | yes | String representing the object's type. |
| `replica` | object | yes |  |
| `sandbox` | object | yes |  |
| `students` | object | yes |  |
| `subdomain` | string | yes |  |
| `subdomain_url` | string | yes |  |

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
