# Signal Forge Studio Prospect Batch Scorer

> Signal Forge Studio Prospect Batch Scorer is a paid API for AI agents from signalforgestudios.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Scores a batch of public business URLs for prospect quality, returning a rank, score, and status for each URL submitted

## Facts

- Endpoint: POST https://signalforgestudios.com/x402/prospect-batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signal-forge-studio-prospect-batch-scorer-95a41e6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y1wO6UgTqlyBlvNA_4M7N

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 signal-forge-studio-prospect-batch-scorer-95a41e6d -d '<json body>'
```

Example prompt: Can you score these three business URLs for me — https://coffeeshop-a.com, https://boutique-b.com, and https://agencyxyz.com — and tell me which ones look like good prospects worth reaching out to?

## When to prefer this

Choose this endpoint when you need to qualify or rank multiple business websites in a single call for sales, CRM, or agency prospecting workflows. It is especially suited for SDR automation pipelines where lead lists need to be scored and prioritized before outreach, and when you want a fixed, predictable cost per batch call rather than per-URL pricing.

## Known failure modes

- Invalid or unreachable URLs return a failed status and are excluded from prospect classification
- Malformed request body may result in a 400 error
- Network timeouts on target URLs may cause partial results with some entries failing
- Submitting too many URLs in one batch may exceed processing limits

## How this service works

Signal Forge Studio makes printable wall art and small digital kits for online sellers.

## Output

Returns a JSON object with a results array where each entry contains the submitted URL, a numeric score (0–100), a rank, and a status (e.g. 'ok'). Also includes a summary with counts of succeeded and failed URLs, the fixed price per call, and a limitations list noting any caveats (e.g. failed pages are not classified as poor prospects).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "results": [
    {
     "url": "https://example.com",
     "rank": 1,
     "score": 65,
     "status": "ok"
    }
   ],
   "summary": {
    "failed": 1,
    "requested": 2,
    "succeeded": 1,
    "fixed_price_usd": 0.1
   },
   "limitations": [
    "Failed pages are not classified as poor prospects."
   ]
  },
  "meta": {
   "example_only": true
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signal-forge-studio-prospect-batch-scorer-95a41e6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalforgestudios.com](https://www.zero.xyz/host/signalforgestudios.com/llms.txt)
