---
title: "Account & usage"
description: "Plan, current period usage, and limits for the authenticated account."
---

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

# Account & usage

## GET /account/usage

`GET /api/v1/account/usage` — any scope. Use it to check quotas before bulk
work instead of hitting `422`s.

```json
{
  "data": {
"plan": "pro",
"period_start": "2026-07-01",
"usage": { "links_created": 120, "human_clicks": 8064, "api_requests": 233 },
"limits": { "links_per_month": 2000, "human_clicks_per_month": 100000, "api_requests_per_minute": 60 }
  }
}
```

Source: https://docs.in.bio/api/account/index.mdx
