Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dacard.ai/llms.txt

Use this file to discover all available pages before exploring further.

Rate Limits & Quotas

Dacard.ai uses a credit-based system to manage usage across plans. Each scoring operation consumes credits, and limits reset monthly.

Credit system

OperationCredits consumed
URL score (full 27-dimension assessment)10 credits
DAC chat message1 credit
API call0.1 credits
Credits are allocated per plan and reset at the start of each billing cycle. Plan quotas are shown in “scores” on marketing pages (1 score = 10 credits).

Plan limits

PlanMonthly scoresProductsTeam membersSuite intelligence
Free311No
Starter2011No
Pro10053Yes
Business2002510Yes
EnterpriseUnlimitedUnlimitedUnlimitedYes
Check your current usage and remaining credits via GET /api/usage. The response includes creditsUsed, creditLimit, and resetDate.

Anonymous scoring

The POST /api/try-score endpoint allows unauthenticated scoring with stricter limits:
  • Rate limit: 1 score per IP per hour
  • No history: Results are not saved to any account
  • No suite: Anonymous scores cannot be added to product portfolios
Authenticated users should use POST /api/score for full functionality.

Rate limit responses

When you exceed your credit limit, the API returns a 429 Too Many Requests response:
{
  "error": "Monthly credit limit reached",
  "code": "QUOTA_EXCEEDED",
  "creditsUsed": 1000,
  "creditLimit": 1000,
  "resetDate": "2026-05-01T00:00:00Z"
}
Anonymous scoring rate limits return:
{
  "error": "Rate limit exceeded. Sign up for higher limits.",
  "code": "ANON_RATE_LIMIT"
}

Monitoring usage

Use the Get Usage & Quota endpoint to check your current consumption:
curl -X GET https://app.dacard.ai/api/usage \
  -H "Authorization: Bearer <token>"

Score packs

Add scoring capacity to any paid plan without upgrading:
PackScoresPrice
Small20 scores$29
Medium50 scores$49
Large150 scores$99
Score packs do not expire. Monthly plan credits reset each cycle regardless.

Upgrading

To increase your limits, upgrade your plan via: Enterprise customers can contact us for custom limits and SLAs.