Skip to main content

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.

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.
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

FeatureSoloTeamEnterprise
Seats1Up to 5Unlimited
Projects / audits10 active50 activeUnlimited
Credits per billing period5,00025,000Custom
Document analyses10 per project50 per projectUnlimited
Audit analyses10 per project50 per projectUnlimited
ReadyLinks110Unlimited
White-label reportsNoNoYes
Custom domain ReadyLinksNoNoYes
Webhook integrationsNoYesYes
Priority supportNoNoYes

Credits

Credits are consumed by write operations that trigger AI synthesis:
OperationCredit 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.
If a write operation returns 402, you have insufficient credits. Top up via the Audity billing page or upgrade your plan.

Tier enforcement in the API

When an API call requires a higher tier, the response is 403 with a requiredTier field:
{
  "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

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.
  • Glossary, definitions of credits, projects, and other key terms
  • Error codes, full list of API error codes including credit-related errors