API Credit Costs

Understand how credits are charged for external API usage

How API Credits Work

Understanding credit deduction for API usage

1

Credits Charged Per Request

Each API endpoint has a specific credit cost. Read operations cost less, while AI generation and analysis operations cost more.

2

Automatic Deduction

Credits are automatically deducted from the API key owner's account when requests are made.

3

Add-On Credits First

Add-on credits (purchased extras) are used first before consuming monthly plan limits.

4

Track Usage

Monitor your API credit usage in real-time through your dashboard and credit history.

Read Operations (Low Cost)

12 endpoints • 0-2 credits per request

GET /api/entities

List all entities

1credit

GET /api/entities/:id

Get single entity details

1credit

GET /api/analytics/overview

Get analytics overview

2credits

GET /api/analytics/entities/:id

Get entity analytics

2credits

GET /api/citations

Get citations

2credits

GET /api/citations/trends

Get citation trends

2credits

GET /api/competitors

List competitors

2credits

GET /api/templates

List templates

1credit

GET /api/dashboard/stats

Get dashboard statistics

1credit

GET /api/credits

Check credit balance

0credits

GET /api/credits/history

Get credit history

0credits

GET /api/credits/check

Check if can generate

0credits

Write Operations (Medium Cost)

6 endpoints • 2-5 credits per request

POST /api/entities

Create new entity

5credits

PUT /api/entities/:id

Update entity

3credits

DELETE /api/entities/:id

Delete entity

2credits

POST /api/analytics/events

Track analytics event

1credits

POST /api/competitors

Add competitor

5credits

POST /api/templates

Create template

3credits

Analysis Operations (Medium Cost)

3 endpoints • 3-8 credits per request

POST /api/citations/analyze

Analyze citations

5credits

POST /api/citations/simulate

Simulate citation scenarios

3credits

POST /api/competitors/auto-search

Auto-search competitors

8credits

AI Generation (High Cost)

2 endpoints • 8-10 credits per request

POST /api/ai/enhance

AI-enhance content

10credits

POST /api/ai/import-url

Import content from URL

8credits

Cost Optimization Tips

Best practices to minimize credit consumption

Cache Results

Cache API responses on your end to avoid redundant requests, especially for read operations.

Batch Requests

When possible, fetch multiple entities in a single list request rather than making individual GET requests.

Use Webhooks

Set up webhooks to receive updates instead of polling endpoints repeatedly.

Monitor Usage

Regularly check your API usage dashboard to identify and optimize high-cost operations.