Qualify 2-10 distinct public business URLs against one ICP
Qualify 2-10 distinct public business URLs against one ICP. Returns ranked existing-rule prospect scores, evidence and per-URL failure states. Fixed $0.10 per batch including partial successes; no charge if all fetches fail. Scores are heuristic, not calibrated win probabilities.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-15
updated
Provider
signalforgestudios.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7e4d786057930b66cb45e2017a587425ebade587",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"icp": "small businesses",
"urls": [
"https://signalforgestudios.com/lead-generator/",
"https://signalforgestudios.com/capabilities/"
],
"use_case": "lead_generation"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data": {
"limitations": [
"Failed pages are not classified as poor prospects."
],
"results": [
{
"rank": 1,
"score": 65,
"status": "ok",
"url": "https://example.com"
}
],
"summary": {
"failed": 1,
"fixed_price_usd": 0.1,
"requested": 2,
"succeeded": 1
}
},
"meta": {
"example_only": true
},
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"icp": {
"maxLength": 500,
"minLength": 0,
"type": "string"
},
"urls": {
"items": {
"maxLength": 2048,
"minLength": 1,
"type": "string"
},
"maxItems": 10,
"minItems": 2,
"type": "array",
"uniqueItems": true
},
"use_case": {
"enum": [
"lead_generation",
"trust_review",
"sales_research",
"ecommerce",
"general"
]
}
},
"required": [
"urls"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"required": [
"results",
"summary",
"limitations"
],
"type": "object"
},
"meta": {
"type": "object"
},
"success": {
"const": true
}
},
"required": [
"success",
"data",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://signalforgestudios.com/x402/prospect-batch" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://signalforgestudios.com/x402/prospect-batch");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://signalforgestudios.com/x402/prospect-batch")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7657.json, and this resource appears in /discovery/resources and /discovery/search.