Will anyone pay this x402 endpoint?
Will anyone pay this x402 endpoint? A calibrated probability (0-1) that a listed x402 resource receives at least one paid call in the next 7 days, from a fine-tuned decision model scored against today's CDP Bazaar catalog, plus the listing's live telemetry and days until eviction. ROC AUC 0.73 on held-out hosts and later dates (0.67 for a LightGBM baseline); top-decile scores were paid 65% of the time, bottom-decile 3%. Send {"resource": "<listed x402 resource URL>"}. Resources not in the current catalog are rejected before payment. Method and free demo: https://sentedge.ai/x402-demand/
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://sentedge.ai/api/x402-demand/score
| Category | Everything else |
|---|---|
| Provider host | sentedge.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"resource": "https://api.example.dev/v1/forecast"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"resource": {
"description": "A resource URL listed in the CDP x402 Bazaar",
"type": "string"
}
},
"required": [
"resource"
]
},
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}