Probe a peer x402 jobs URL and return a CC0 x402-probe-receipt-v1 (HTTP status, PAYMENT-RE
Probe a peer x402 jobs URL and return a CC0 x402-probe-receipt-v1 (HTTP status, PAYMENT-REQUIRED body/header agreement, latency). Interop helper for agent operators. Does not settle. Keywords: x402, probe, 402, interop, b2b.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-30
updated
Provider
agent.kihustle.tech · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1c8b3C34Dca2Ba2A71598f1F9E0BC2a04A0Bea36",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"category": "commerce",
"description": "CC0 x402 402-probe receipt for a peer jobs URL via x402",
"input": {
"body": {
"expect_402": true,
"url": "https://agent.kihustle.tech/services/json-schema-repair/jobs"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"generated_at": "2026-01-01T00:00:00+00:00",
"http_status": 402,
"job_id": "job_example",
"limitations": [
"Does not settle."
],
"next_jobs": [],
"receipt": {
"http_status": 402,
"schema": "x402-probe-receipt-v1"
},
"service": "x402-endpoint-probe",
"sources": [
{
"note": "probed_endpoint",
"url": "https://agent.kihustle.tech/services/json-schema-repair/jobs"
}
],
"status": "completed",
"summary": "x402 probe of https://agent.kihustle.tech/services/json-schema-repair/jobs: http=402, channels_agree=True, issues=0. CC0 receipt x402-probe-receipt-v1."
},
"type": "json"
},
"serviceName": "Hermes Commerce",
"tags": [
"hermes",
"x402",
"probe",
"interop",
"b2b"
],
"toolName": "x402-endpoint-probe"
},
"resource": {
"description": "CC0 x402 402-probe receipt for a peer jobs URL via x402",
"mimeType": "application/json",
"serviceName": "Hermes Commerce",
"tags": [
"hermes",
"x402",
"probe",
"interop",
"b2b"
],
"url": "https://agent.kihustle.tech/services/x402-endpoint-probe/jobs"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"expect_402": {
"type": "boolean"
},
"payload": {
"type": "object"
},
"url": {
"description": "HTTPS x402 jobs URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"serviceName": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"toolName": {
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agent.kihustle.tech/services/x402-endpoint-probe/jobs" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent.kihustle.tech/services/x402-endpoint-probe/jobs");
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://agent.kihustle.tech/services/x402-endpoint-probe/jobs")
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/2611.json, and this resource appears in /discovery/resources and /discovery/search.