# Qonoro Buying Intent Detection

> Qonoro Buying Intent Detection is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Detects whether a specific company is actively evaluating or purchasing in a given product category, returning structured intent signals, confidence scores, and recommended sales approach.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/intent-signals/find
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-buying-intent-detection-c7c68dc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0CrFVU6TuyGXGKDAsDQ8D

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability qonoro-buying-intent-detection-c7c68dc6 -d '<json body>'
```

Example prompt: Check if Salesforce is showing active buying intent for cloud data warehousing solutions — run a standard depth analysis and tell me the intent score, confidence, and key signals you found.

## When to prefer this

Choose this endpoint when you need to determine whether a specific named company is actively in-market for a product category before investing sales or marketing effort. It is purpose-built for autonomous agent sales workflows, returning structured signals with typed categories (RFP, competitor switch, job postings, executive statements) rather than raw web data. Prefer it over generic web search when you need scored, normalized intent output ready for CRM enrichment or sales prioritization logic. It is especially valuable as a pre-outreach qualification step or for dynamic ABM list scoring.

## Known failure modes

- Company not found or too small to have public signals — returns low/none intent level with low data quality
- Invalid or unrecognizable company name — may return empty signals array
- Rate limiting or payment failure via x402 protocol — HTTP 402 or 429 response
- Product category is too vague or broad — may result in low-confidence signals with quality warnings
- Timeout on deep scan depth for companies with sparse public data
- Stale cached results returned (cache_hit: true) when fresh data is needed

## How this service works

x402-native buying-intent detection for autonomous agents. Identifies companies actively evaluating or purchasing in a given product category, with structured signals, confidence scoring, and recommended sales approach.

## Output

Returns a structured response with an overall intent score (0–1), an intent level (high/medium/low/none), a confidence score, a data quality rating, and an array of individual signals each containing a signal type (rfp, vendor_evaluation, tech_stack_change, job_posting_intent, executive_statement, competitor_switch, expansion_triggered, or other), a description, a source URL, a published date, and a confidence value. Also includes source URLs used, cache hit status, a unique request ID, and any quality warnings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "standard",
    "deep"
   ],
   "type": "string",
   "default": "standard"
  },
  "buyer_region": {
   "enum": [
    "PR",
    "outside_PR",
    "unknown"
   ],
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  },
  "company_name": {
   "type": "string",
   "description": "Company to check for active buying intent."
  },
  "company_website": {
   "type": "string",
   "description": "Optional company website URL."
  },
  "product_category": {
   "type": "string",
   "description": "Optional product/vertical to scope intent signals to (e.g. 'CRM', 'cloud infrastructure')."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-buying-intent-detection-c7c68dc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
