# Oracles Prospect Check — SDR Buying-Signal Verdict

> Oracles Prospect Check — SDR Buying-Signal Verdict is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated verdict on whether a company is worth outreach this week, based on recent public buying-trigger signals, with a recommended action (reach out now/soon/monitor/no signal), top trigger, and outreach angle.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/prospect/check
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oracles-prospect-check-sdr-buying-signal-verdict-81e214dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HDTBSKF2kxHKdSpJmWzwM

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 oracles-prospect-check-sdr-buying-signal-verdict-81e214dc
```

Example prompt: Is HubSpot worth an SDR reaching out to this week? Give me the buying-signal verdict, the top trigger driving it, and a concrete outreach angle I can use.

## When to prefer this

Use this endpoint when you need a fast, LLM-synthesized go/no-go verdict for a single company's outreach readiness based on public buying triggers — especially for SDR prioritization workflows. Prefer this over generic company data APIs when you want an opinionated, action-oriented recommendation rather than raw firmographic data. Best for weekly account review automation or real-time SDR queue triage.

## Known failure modes

- Unknown or misspelled company name returns empty findings or low-confidence verdict
- CIK not found in public records returns an error or empty result
- Company with no recent public signals returns a 'no strong signal' verdict with no actionable angle
- Rate limiting or payment failure (x402) if USDC payment is not properly attached
- Ambiguous ticker (e.g. shared across markets) may resolve to wrong entity

## How this service works

PREMIUM one-call reach-out verdict for a single company: pass ?company=<name|ticker|CIK> and get its recent public buying-triggers plus an LLM verdict — reach out now / soon / monitor / no strong signal, the top trigger and window, and a concrete trigger-grounded outreach angle. The 'is this account worth an SDR's time this week, and why' answer. PII-free (no contact data).

## Output

Returns a JSON object containing: an overall verdict label (reach out now / soon / monitor / no strong signal), an array of recent public buying-trigger findings, the top trigger and its time window, a trigger-grounded outreach angle string, and metadata indicating whether the response was LLM- or template-generated. No PII or contact data is included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "company"
     ],
     "properties": {
      "company": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "overallVerdict": {
       "type": "string"
      },
      "packagesAudited": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oracles-prospect-check-sdr-buying-signal-verdict-81e214dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
