> ## 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 Demo Checker API

> The Company Demo Checker API tells you whether a company offers a product demo. Pass a domain and get back a simple boolean, a fast qualifier for sales-motion research, competitive analysis, and product-led-growth segmentation.

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

  How a company sells is as revealing as what it sells.

  * **Sales-Motion Research:** Classifying prospects by whether they run a demo-led sales process.
  * **Competitive Analysis:** Mapping how companies in a category let buyers evaluate their product.
  * **Lead Qualification:** Segmenting targets by sales model before outreach.
  * **Market Research:** Measuring how common demo-led selling is in a segment.
</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_demo": true
      },
      "meta": {
          "confidence": 97,
          "query": {
              "query": "cufinder.io"
          },
          "credits": {
              "charged": 1,
              "remaining": 9862
          }
      }
  }
  ```
</CodeGroup>

## Related APIs

<CardGroup cols={2}>
  <Card title="Company Free Trial Checker" icon="toggle-right" href="/apis/company-free-trial-check">
    Check whether a company offers a free trial.
  </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 B2B or B2C Checker" icon="arrows-split" href="/apis/company-b2b-or-b2c-checker">
    Classify a company as B2B or B2C.
  </Card>

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