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

# Account

> Account v3 endpoints

## Show the current account

Gets details for the current account

### Endpoint

`GET /v3/account`

### Parameters

<ParamField path="api_secret" type="string" required={true}>
  Your API secret key
</ParamField>

<CodeGroup>
  ```shell Request theme={null}
  curl https://api.convertkit.com/v3/account?api_secret=<your_secret_api_key>
  ```

  ```json Response theme={null}
  {
    "name":"Acme Corp.",
    "primary_email_address":"you@example.com"
  }
  ```
</CodeGroup>
