# Qonoro Sales Signal Detection

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

Detects actionable sales signals for a target company — including funding rounds, hiring surges, product launches, partnerships, and expansion — with confidence scores and recommended actions.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/sales-signals/find
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-sales-signal-detection-8eaaa397
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JmJHuj9WVQY8itjtyzwEB

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-sales-signal-detection-8eaaa397 -d '<json body>'
```

Example prompt: Pull sales signals for Acme Technology Solutions at acme-tech.example.com — I want to know if they've had any recent funding, hiring surges, or product launches, and get recommended outreach actions with confidence scores.

## When to prefer this

Use this endpoint when you need actionable, scored sales intelligence on a specific company — particularly buying triggers like funding, hiring, product launches, and expansion. Prefer this over generic company enrichment when the primary goal is identifying outreach timing and recommended actions. It complements Qonoro's basic company enrichment endpoint but goes deeper on sales-specific signals and prioritized next steps.

## Known failure modes

- Unknown or very new company with no discoverable signals returns empty signal arrays with low confidence score
- Invalid or unreachable website URL may result in data quality degraded to 'low'
- Rate limiting or payment failure returns 402 or 429 error
- Ambiguous company name without website may return incorrect company match
- Highly private or stealth-mode companies may return minimal data with quality warnings

## How this service works

Sales signal detection for autonomous agents, including funding, hiring, product launches, partnerships, expansion, revenue growth, recommended actions, and confidence scores.

## Output

Returns a structured object with detected sales signals (each with priority, confidence, and description), recommended actions, decision makers, funding stage, company size, business summary, competitors, risks, opportunities, data quality rating, and response time. Each signal is scored by confidence level (0–1).

## Example request

```json
{
 "input": {
  "body": {
   "depth": "standard",
   "website": "https://www.acme-tech.example.com",
   "buyer_region": "unknown",
   "company_name": "Acme Technology Solutions"
  },
  "type": "http",
  "method": "POST",
  "headers": {},
  "bodyType": "json"
 },
 "output": {
  "type": "json",
  "example": {
   "risks": [],
   "sources": [],
   "industry": "Software",
   "cache_hit": false,
   "competitors": [],
   "company_name": "Acme Technology Solutions",
   "company_size": "50-200",
   "data_quality": "medium",
   "funding_stage": "Series A",
   "opportunities": [],
   "sales_signals": [],
   "decision_makers": [],
   "target_customer": "Enterprise",
   "verified_claims": [],
   "business_summary": "Technology solutions provider",
   "confidence_score": 0.75,
   "quality_warnings": [],
   "response_time_ms": 1200,
   "company_size_note": "Estimated",
   "company_size_source": "Public data",
   "recommended_actions": [],
   "structured_competitors": [],
   "structured_sales_signals": []
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "standard",
    "deep"
   ],
   "type": "string",
   "default": "standard"
  },
  "website": {
   "type": "string",
   "description": "Official company website"
  },
  "company_name": {
   "type": "string",
   "description": "Company name to research"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-sales-signal-detection-8eaaa397/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)
