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

# Account

> Retrieve your account profile and API key details.

Use this endpoint to fetch information about the account associated with your API key, including your organization, account identifiers, and remaining credit balance.

## Endpoint

```
GET https://api.harmstack.com/v0/me
```

## Authentication

All requests must include your API key as a Bearer token.

<ParamField header="Authorization" type="string" required>
  `Bearer YOUR_API_KEY`
</ParamField>

## Request

```bash theme={null}
curl https://api.harmstack.com/v0/me \
  --header "Authorization: Bearer YOUR_API_KEY"
```

## Response

Returns `200 OK` with a JSON body describing your account.

<ResponseField name="organization_id" type="number" required>
  The numeric ID of the organization your API key belongs to.
</ResponseField>

<ResponseField name="account_id" type="number" required>
  The numeric ID of the account associated with your API key.
</ResponseField>

<ResponseField name="available_credits" type="number" required>
  Your current credit balance. Credits are consumed each time you submit a benchmarking job.
</ResponseField>

```json theme={null}
{
  "organization_id": 42,
  "account_id": 7,
  "available_credits": 125.0
}
```

<Note>
  Each benchmarking job deducts credits from your balance equal to the
  `benchmark_count` you submit. Use this endpoint to check your balance before
  submitting large batches.
</Note>
