# Sales Lead AI Visibility Qualifier

> Sales Lead AI Visibility Qualifier is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.49/call, status unknown (last checked 2026-09-13).

Checks how often a prospect brand appears in AI assistant answers for their category, scores the lead, and generates a personalized outreach opener

## Facts

- Endpoint: GET https://store.agentexchange.work/sales/qualify
- Price: $0.49/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sales-lead-ai-visibility-qualifier-d55b9989
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sb4tGiGMOyxwGmGGlLOzT

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 sales-lead-ai-visibility-qualifier-d55b9989
```

Example prompt: Check if Acme Logistics shows up when buyers ask AI assistants about freight brokers — I'm selling AI visibility services and want to know if they're a hot lead and what opening line to use.

## When to prefer this

Use this endpoint when you need to qualify a B2B sales prospect by measuring their AI search visibility gap — specifically for agencies or sellers offering GEO or AI visibility services. Prefer this over generic lead scoring APIs when you need AI-mention frequency data and auto-generated outreach copy tied to competitive displacement. Best when the prospect's buyers are known to use AI assistants for product research.

## Known failure modes

- Missing required 'brand' or 'category' query parameters returns a 400 error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Unknown or very niche brand may return score of 0 with no competitor data
- Invalid market code may default to 'us' or return an error
- Rate limiting or overload may return a 429 Too Many Requests response

## How this service works

Lead qualifier for agencies selling SEO/GEO/marketing: runs a live AI-visibility audit on a prospect and returns a lead tier (HOT/WARM/COLD), score 0-100, the competitors AI recommends instead, a ready-to-personalize outreach opener, and a re-check plan. Sends nothing itself. Params: brand + category (+ optional market, seller_service).

## Output

Returns a JSON object with a numeric AI visibility score (0–100), total AI queries sampled, mention count, lead tier (e.g. HOT/WARM/COLD), a ready-to-use outreach opener sentence, a list of competitors the AI currently recommends instead, and a suggested follow-up recheck window in days.

## 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": [
      "brand",
      "category"
     ],
     "properties": {
      "brand": {
       "type": "string"
      },
      "market": {
       "type": "string"
      },
      "category": {
       "type": "string"
      },
      "seller_service": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "score": {
       "type": "number"
      },
      "follow_up": {
       "type": "object"
      },
      "lead_tier": {
       "type": "string"
      },
      "outreach_opener": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "brand": "Acme Logistics",
  "score": 20,
  "follow_up": {
   "recheck_after_days": 30
  },
  "lead_tier": "HOT",
  "competitors_ai_recommends": [
   "BigCo"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sales-lead-ai-visibility-qualifier-d55b9989/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
