---
title: "Account Info"
description: "Check your credit balance, plan, and API usage."
---

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

# Account Info

`GET /api/v1/me`

Returns your current credit balance, plan information, and usage statistics.

:::tip
**Free**: this endpoint never charges a credit. Use it to monitor your balance programmatically before running batch jobs.
:::

## Code examples

```bash title="cURL"
curl "https://kooperativa.io/api/v1/me" \
  -H "Authorization: Bearer ik_live_..."
```

```js title="JavaScript"
const res = await fetch("https://kooperativa.io/api/v1/me", {
  headers: { Authorization: `Bearer ${process.env.KOOPERATIVA_API_KEY}` },
});
const data = await res.json();
```

## Response

```json
{
  "email": "you@company.com",
  "plan": "growth",
  "credits": {
"remaining": 8432,
"total": 10000,
"renews_at": null
  },
  "usage": {
"this_month": 1568
  }
}
```

:::note
Credits **never expire**. The `renews_at` field is `null` for all plans since there is no monthly reset. You only pay for what you use.
:::

Source: https://docs.kooperativa.io/account/account-info/index.mdx
