> ## Documentation Index
> Fetch the complete documentation index at: https://technologychecker.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Credits

> API credit costs per endpoint, pricing plans (Free, Pro, Scale), and usage monitoring. Most endpoints cost 1 credit; live detection costs 5.

Every API call uses credits from your plan balance. Different endpoints cost different amounts depending on the compute involved.

## How much does each endpoint cost?

| Endpoint                                           | Credits      |
| -------------------------------------------------- | ------------ |
| Domain lookup (`GET /v1/domain/{domain}`)          | 1            |
| Domain history (`GET /v1/domain/{domain}/history`) | 1            |
| Find domains by technology                         | 1            |
| Technology lookup / search                         | 1            |
| Technology stats and trends                        | 1            |
| Market share                                       | 1            |
| Company lookup                                     | 1            |
| Company search                                     | 1            |
| Batch company lookup                               | 1 per domain |
| **Live technology lookup**                         | **5**        |
| Usage and credits endpoints                        | 0            |

<Info>
  Most endpoints cost 1 credit. Live detection (5 credits) costs more due to real-time browser rendering.
</Info>

## Plans

<CardGroup cols={3}>
  <Card title="Free" icon="circle-check">
    **\$0/month** — 100 credits

    Get started with full API access. No credit card required.
  </Card>

  <Card title="Pro" icon="star">
    **\$89/month** — 10,000 credits

    Yearly: \$890/year (save 17%).
  </Card>

  <Card title="Scale" icon="rocket">
    **\$249/month** — 50,000 credits

    Yearly: \$2,490/year (save 17%).
  </Card>
</CardGroup>

<Note>
  Credits reset monthly on your billing cycle. Unused credits don't roll over. Check your current balance at any time using the [credit summary](/docs/api-reference/endpoints/account#credit-summary) endpoint.
</Note>

## How to monitor usage

Use the account endpoints to track your credit consumption:

* **`GET /v1/credits`** — Current credit balance across all API keys
* **`GET /v1/usage`** — Detailed usage statistics with date range filtering

Both endpoints are free and don't consume credits.

## Related pages

<CardGroup cols={2}>
  <Card title="Rate limits" icon="gauge-high" href="/docs/api-reference/rate-limits">
    Request limits by plan and retry strategies.
  </Card>

  <Card title="Account API" icon="key" href="/docs/api-reference/endpoints/account">
    Monitor usage statistics and credit balance via API.
  </Card>

  <Card title="Authentication" icon="lock" href="/docs/api-reference/authentication">
    Set up your API key for Bearer token authentication.
  </Card>

  <Card title="Live detection" icon="bolt" href="/docs/api-reference/live-detection/technology-lookup-live-api">
    Real-time detection — costs 5 credits per request.
  </Card>
</CardGroup>

## Frequently asked questions

<AccordionGroup>
  <Accordion title="Do unused credits roll over to the next month?">
    No. Credits reset monthly on your billing cycle date. Unused credits don't carry over. Monitor your balance with the free `GET /v1/credits` endpoint to avoid waste.
  </Accordion>

  <Accordion title="What happens when I run out of credits?">
    API calls that require credits will return an error when your balance reaches zero. Free endpoints like `/v1/usage` and `/v1/credits` continue to work. Upgrade your plan or wait for the monthly reset.
  </Accordion>

  <Accordion title="Why does live detection cost more than a database lookup?">
    Live detection (`POST /v1/technology-lookup-live`) costs 5 credits because it spins up a real-time browser session to render the page, execute JavaScript, and analyze the results. Database lookups use pre-crawled data and return instantly for 1 credit. Use the [domain lookup](/docs/api-reference/introduction#domain-technologies) first and fall back to live detection only when needed.
  </Accordion>

  <Accordion title="How are credits counted for batch requests?">
    Batch endpoints charge 1 credit per item in the request. For example, `POST /v1/companies/batch` with 50 domains costs 50 credits. `POST /v1/technologies/lookup` costs 1 credit total regardless of how many technology names you include. Check the [endpoint table](/docs/api-reference/introduction#available-apis) for per-endpoint costs.
  </Accordion>

  <Accordion title="How do I check my remaining credits programmatically?">
    Call `GET /v1/credits` to get your current balance, credit limit, and next reset date. This endpoint is free and doesn't consume credits. You can poll it from your application to build dashboards or trigger alerts before you run out. See the [account API](/docs/api-reference/endpoints/account) for details.
  </Accordion>

  <Accordion title="Is there an enterprise plan with custom credit limits?">
    Yes. If the Scale plan's 50,000 monthly credits aren't enough, contact the TechnologyChecker team for custom enterprise pricing. Enterprise plans include higher credit allocations, increased rate limits, and dedicated support. Visit [technologychecker.io](https://technologychecker.io) to get in touch.
  </Accordion>
</AccordionGroup>
