3.2 KiB
3.2 KiB
Plan Limits Comparison Table
Accounts
- dev@igny8.com (Developer Account)
- scale@igny8.com (Scale Account)
Complete Limit Comparison Table
| Limit Category | Limit Name | dev@igny8.com | scale@igny8.com | Notes |
|---|---|---|---|---|
| GENERAL LIMITS | ||||
| Max Users | TBD | TBD | Total users allowed per account | |
| Max Sites | TBD | TBD | Maximum number of sites allowed | |
| PLANNER LIMITS | ||||
| Max Keywords | TBD | TBD | Total keywords allowed (global limit) | |
| Max Clusters | TBD | TBD | Total clusters allowed (global) | |
| Max Content Ideas | TBD | TBD | Total content ideas allowed (global limit) | |
| Daily Cluster Limit | TBD | TBD | Max clusters that can be created per day | |
| WRITER LIMITS | ||||
| Monthly Word Count Limit | TBD | TBD | Monthly word limit (for generated content) | |
| Daily Content Tasks | TBD | TBD | Max number of content tasks (blogs) per day | |
| IMAGE LIMITS | ||||
| Monthly Image Count | TBD | TBD | Max images per month | |
| Daily Image Generation Limit | TBD | TBD | Max images that can be generated per day | |
| AI CREDITS | ||||
| Monthly AI Credit Limit | TBD | TBD | Unified credit ceiling per month (all AI functions) | |
| Monthly Cluster AI Credits | TBD | TBD | AI credits allocated for clustering | |
| Monthly Content AI Credits | TBD | TBD | AI credit pool for content generation | |
| Monthly Image AI Credits | TBD | TBD | AI credit pool for image generation | |
| Credits Per Month (Effective) | TBD | TBD | Effective credits (included_credits or credits_per_month) |
Current Status from Images
Image 1 (dev@igny8.com):
- Page Title: "Usage" ✓ (Changed successfully)
- Debug Info:
Loading=No, Limits=0, Planner=0, Writer=0, Images=0, AI=0, General=0 - Error Message: "No usage limits data available"
- Status: API endpoint not returning data or account has no plan assigned
Image 2 (scale@igny8.com):
- Page Title: "Usage" ✓ (Changed successfully)
- Debug Info:
Loading=No, Limits=0, Planner=0, Writer=0, Images=0, AI=0, General=0 - Error Message: "No usage limits data available"
- Status: API endpoint not returning data or account has no plan assigned
Issue Identified
Both accounts show Limits=0, which means:
- The API endpoint
/v1/billing/credits/usage/limits/is being called - But it's returning an empty array
[]or the accounts don't have plans - The frontend correctly shows the error message when no data is available
Next Steps
To get the actual limit values, we need to:
- Check if accounts have plans assigned in the database
- If plans exist, verify the API endpoint is correctly querying and returning the data
- If no plans exist, assign plans to the accounts
API Endpoint Details
- URL:
/v1/billing/credits/usage/limits/ - Method: GET
- Authentication: Required (JWT or Session)
- Response Format:
{ "limits": [ { "title": "Keywords", "limit": 1000, "used": 0, "available": 1000, "unit": "keywords", "category": "planner", "percentage": 0.0 }, ... ] }