# ServoSignal Deal Brief API

> ServoSignal Deal Brief API is a paid API for AI agents from signal.servocenter.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Generates an evidence-backed sales deal brief for a target company, including recent signals, qualification score, and recommended outreach approach.

## Facts

- Endpoint: POST https://signal.servocenter.com/v1/company/deal-brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/servosignal-deal-brief-api-a29266ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x9YPevp0aGxKaiVrSIcJa

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 servosignal-deal-brief-api-a29266ac -d '<json body>'
```

Example prompt: Pull a ServoSignal deal brief for HubSpot — I'm the seller and I need their qualification score, latest buying signals from the past 90 days, and the recommended outreach angle so I can personalize my cold email.

## When to prefer this

Choose this endpoint when you need a ready-to-act sales brief combining qualification scoring, recent trigger signals, and a concrete outreach recommendation in a single call — rather than assembling raw data from separate firmographic, news, or intent APIs. Best suited for B2B sellers who want structured, opinionated output (fit label, message angle, roles to contact) rather than raw company data. Prefer this over generic web search or firmographic enrichment APIs when the goal is to inform or personalize a specific sales interaction.

## Known failure modes

- Company not found or insufficient public data — returns partial:true with sparse fields and empty signals arrays
- Payment failure via x402 — request blocked before processing
- Invalid or missing seller field — may return malformed or empty brief
- Rate limiting or upstream search quota exhaustion — estimatedCost fields may reflect degraded coverage
- Stale data if the company has no recent public signals within the lookback window

## How this service works

Fresh company signals and actionable deal briefs, paid per request with x402 on Base USDC.

## Output

Returns a structured JSON deal brief containing: company metadata (name, domain, industry, description, HQ, business model, employee range), a qualification block (fit score 0–100, fit label, reasons, disqualifiers, score components), recent signals (events, triggers), likely priorities, risks, why-now factors, a recommended approach (message angle, roles to contact, recommended action, validation questions), a list of sources, and freshness metadata (generation timestamp, lookback window in days). Also includes a request ID and upstream usage stats.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "seller": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "partial": false,
   "provider": "public-web",
   "upstreamUsage": {
    "contents": 6,
    "searches": 3,
    "estimatedCost": 0
   }
  },
  "risks": [],
  "whyNow": [],
  "company": {
   "name": "HubSpot",
   "domain": "hubspot.com",
   "industry": null,
   "description": null,
   "headquarters": null,
   "businessModel": null,
   "employeeRange": null
  },
  "sources": [],
  "freshness": {
   "generatedAt": "2026-08-06T08:00:00.000Z",
   "lookbackDays": 90
  },
  "requestId": "req_example",
  "qualification": {
   "reasons": [],
   "fitLabel": "good",
   "fitScore": 68,
   "fitAssessed": true,
   "disqualifiers": [],
   "scoreComponents": {}
  },
  "recentSignals": [],
  "likelyPriorities": [],
  "recommendedApproach": {
   "messageAngle": null,
   "rolesToContact": [],
   "recommendedAction": "Validate the observed trigger.",
   "questionsToValidate": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/servosignal-deal-brief-api-a29266ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signal.servocenter.com](https://www.zero.xyz/host/signal.servocenter.com/llms.txt)
