# Lead Priority Scorer

> Lead Priority Scorer is a paid API for AI agents from unsaid-archive.vandurmedries.chatgpt.site, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scores a sales lead across six BANT-style dimensions and returns a priority tier, composite score, expected deal value, and recommended next action.

## Facts

- Endpoint: GET https://unsaid-archive.vandurmedries.chatgpt.site/api/x402/lead-priority
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lead-priority-scorer-1fc434f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hmDxGw85Zx2lWFXyGeDzd

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 lead-priority-scorer-1fc434f9
```

Example prompt: Score this sales lead for me: budget fit is 4, urgency is 5, authority is 3, pain is 4, trust is 4, implementation fit is 3, the deal is worth $2,500 and we have about 4 hours left to close — what tier is it and what should I do next?

## When to prefer this

Choose this endpoint when you need a fast, structured lead qualification score based on BANT-style dimensions and want an actionable tier and recommended next step — particularly useful inside agent workflows that auto-route or prioritize inbound or pipeline leads without human triage. Prefer it over manual scoring spreadsheets or CRM heuristics when you need a consistent, programmatic signal per call.

## Known failure modes

- Missing required query parameters (budgetFit, urgency, authority, pain, trust, implementationFit) return a 400 error
- Score values outside the 0–5 integer range are rejected as invalid
- hoursToClose below 0.1 fails schema validation
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Service unavailable if the underlying chatgpt.site host is down

## How this service works

Five agent-ready resources sold per call through x402, including Senti: a persistent webhook observer that survives the agent session.

## Output

Returns a JSON object with a letter-grade priority tier (e.g. A–D), a numeric composite score (0–100), an expected monetary value derived from the deal size and scores, and a plain-English recommended next action for the sales rep or agent to take.

## 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": [
      "budgetFit",
      "urgency",
      "authority",
      "pain",
      "trust",
      "implementationFit"
     ],
     "properties": {
      "pain": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      },
      "trust": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      },
      "urgency": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      },
      "authority": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      },
      "budgetFit": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      },
      "dealValue": {
       "type": "number",
       "example": 2500,
       "minimum": 0
      },
      "hoursToClose": {
       "type": "number",
       "example": 4,
       "minimum": 0.1
      },
      "implementationFit": {
       "type": "integer",
       "example": 4,
       "maximum": 5,
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "A",
  "score": 83,
  "expectedValue": 2075,
  "recommendedAction": "Book a decision call and confirm authority."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lead-priority-scorer-1fc434f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from unsaid-archive.vandurmedries.chatgpt.site](https://www.zero.xyz/host/unsaid-archive.vandurmedries.chatgpt.site/llms.txt)
