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

# Tier limits

> A comparison of what each Audity plan includes across seats, projects, credits, analyses, white-label, and integrations.

<Warning>
  The specific limits on this page (credits, seats, projects, file sizes) are placeholders pending confirmation. Verify the current numbers against the Audity pricing page before publishing.
</Warning>

Audity has three plans: **Solo**, **Team**, and **Enterprise**. Limits are enforced at the account level. The API returns your current tier from `GET /api/user/tier` and your remaining credits from `GET /api/user/credits`.

## Plan comparison

| Feature                        | Solo           | Team           | Enterprise |
| ------------------------------ | -------------- | -------------- | ---------- |
| **Seats**                      | 1              | Up to 5        | Unlimited  |
| **Projects / audits**          | 10 active      | 50 active      | Unlimited  |
| **Credits per billing period** | 5,000          | 25,000         | Custom     |
| **Document analyses**          | 10 per project | 50 per project | Unlimited  |
| **Audit analyses**             | 10 per project | 50 per project | Unlimited  |
| **ReadyLinks**                 | 1              | 10             | Unlimited  |
| **White-label reports**        | No             | No             | Yes        |
| **Custom domain ReadyLinks**   | No             | No             | Yes        |
| **Webhook integrations**       | No             | Yes            | Yes        |
| **Priority support**           | No             | No             | Yes        |

## Credits

Credits are consumed by write operations that trigger AI synthesis:

| Operation                                                         | Credit cost     |
| ----------------------------------------------------------------- | --------------- |
| Create a project (`POST /api/projects`)                           | 1,000           |
| Convert a lead (`POST /api/lead-generation/leads/{id}/convert`)   | 1,000           |
| Trigger audit analysis (`POST /api/projects/{id}/audit-analysis`) | Varies by depth |

Credits reset at the start of each billing period. They do not roll over. Use `GET /api/user/credits` to check your current balance before running batch operations.

<Note>
  If a write operation returns `402`, you have insufficient credits. Top up via the Audity billing page or upgrade your plan.
</Note>

## Tier enforcement in the API

When an API call requires a higher tier, the response is `403` with a `requiredTier` field:

```json theme={null}
{
  "error": "Feature not available on your current plan",
  "requiredTier": "team"
}
```

Branch on `requiredTier` to give users a clear upgrade prompt rather than a generic error.

## Checking your current tier

```bash theme={null}
curl https://app.auditynow.com/api/user/tier \
  -H "Authorization: Bearer aky_<your-token>"
```

Returns the canonical tier identifier for your account. Use this as the source of truth; public pricing page names may change independently of API values.

## Related

* [Glossary](/guide/reference/glossary), definitions of credits, projects, and other key terms
* [Error codes](/guide/reference/error-codes), full list of API error codes including credit-related errors
