Credits & Pricing

How credits work, what each endpoint costs, and how to monitor your usage.

How Credits Work

The Signals API uses a simple credit-based model: each API call consumes credits from your monthly allowance.

Credits reset at the start of each billing period (every 30 days from your account start date). Unused credits do not roll over.


Credit Costs by Endpoint

EndpointCredit Cost
Enrich (company)1 credit
Enrich (contact)1 credit
Search1 credit per result (count query is free; charged on retrieval)
Bulk enrich1 credit per record (up to 1,000 records per request)
Webhook delivery1 credit per record (failed deliveries = no charge)
Timeline1 credit per signal
Trending / History1 credit per signal
MCP Agentic API1 credit per result
Intent scoring5 credits
MetadataFree
Generate Content API2 credits per content item

Credit-Free Endpoints

The following endpoints never consume credits:

EndpointDescription
GET /v1/signals/typesList available signal types
GET /v1/signals/trendingTrending signals feed
GET /v1/statsCollection statistics
GET /v1/accountAPI key account info
GET /v1/creditsCredit balance
GET /v1/logsRequest history
All /v1/webhooks management routesSubscription CRUD
Metadata endpointsFree

Pricing Tiers

PlanPriceCredits / MonthPer-Credit Cost
Free$0/mo500$0.00/credit
Starter$249/mo25,000$0.010/credit
Growth$799/mo100,000$0.008/credit
Scale$2,499/mo500,000$0.005/credit
EnterpriseCustomCustom$0.003+/credit

Need more credits or a custom plan? Contact sales to discuss your use case and volume.

Flat File Delivery

Available for high-volume data licensing (1.5M+ records). Contact sales for custom pricing.


Monitoring Usage

Every API response includes current credit usage in the headers — no separate call needed:

x-credits-used: 142
x-credits-remaining: 9858
x-credits-limit: 10000
x-credits-reset: 2026-04-01T00:00:00.000Z

To check your balance explicitly:

curl https://signals.autobound.ai/v1/credits \
  -H "x-api-key: YOUR_API_KEY"
{
  "monthly_limit": 10000,
  "used": 142,
  "remaining": 9858,
  "period_start": "2026-03-01T00:00:00.000Z",
  "period_reset": "2026-04-01T00:00:00.000Z",
  "unlimited": false
}

You'll also receive automated email alerts when you hit 80% and 100% of your monthly limit.


When Credits Run Out

Once your monthly limit is reached, all credit-consuming endpoints return a 402 error:

{
  "error": "credits_exhausted",
  "message": "Monthly credit limit reached. Credits reset at the start of your billing period.",
  "code": 402,
  "credits_used": 10000,
  "credits_limit": 10000
}

Credit-free endpoints continue to work even when credits are exhausted.


Questions

Contact sales to discuss credit packages, volume pricing, or enterprise plans.