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

# Company Free Trial Checker API

> The Company Free Trial Checker API tells you whether a company offers a free trial. Pass a domain and get back a simple boolean, useful for product-led-growth research, competitive teardowns, and segmenting markets by go-to-market model.

<div id="cuf-use-cases" className="cuf-use-cases">
  ## Common Use Cases

  A free trial is the clearest public marker of a product-led go-to-market.

  * **PLG Research:** Identifying which companies in a market sell product-led.
  * **Competitive Teardowns:** Tracking which rivals let buyers self-serve an evaluation.
  * **Segmentation:** Splitting target lists by sales model for tailored messaging.
  * **Partner Sourcing:** Finding self-serve products that fit marketplace or integration plays.
</div>

<Badge color="blue" size="lg" icon="star" className="mt-3">
  Credit usage is 1 credit per request.
</Badge>

## Attributes

<ParamField body="query" type="string" required>
  Company domain or website URL, for example `cufinder.io`.
</ParamField>

## Response

<CodeGroup>
  ```json Response theme={null}
  {
      "success": true,
      "data": {
          "offers_free_trial": true
      },
      "meta": {
          "confidence": 93,
          "query": {
              "query": "cufinder.io"
          },
          "credits": {
              "charged": 1,
              "remaining": 9862
          }
      }
  }
  ```
</CodeGroup>

## Related APIs

<CardGroup cols={2}>
  <Card title="Company Demo Checker" icon="presentation" href="/apis/company-demo-check">
    Check whether a company offers a product demo.
  </Card>

  <Card title="Company SaaS Checker" icon="cloud" href="/apis/company-saas-checker">
    Check whether a company is a SaaS business.
  </Card>

  <Card title="Company Tech Stack Finder" icon="stack-2" href="/apis/company-tech-stack-finder">
    List the technologies a company uses.
  </Card>

  <Card title="Company Enrichment" icon="building" href="/apis/company-enrichment">
    Enrich a company with full firmographics.
  </Card>
</CardGroup>
