Trusted hardware price intelligence: cohort medians (p25/median/p75) over distinct listing
Trusted hardware price intelligence: cohort medians (p25/median/p75) over distinct listings, rolling 90-day window, gated on provider-established currency and condition evidence. Insufficient components are served free; queries are charged only when trusted data is returned.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
updated
Provider
hardwarehunter.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1dd440863e99761823347603D22D5D992DCD3831",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "Unique identifier (UUID format)"
},
"type": "http"
},
"output": {
"example": {
"benchmark_trust": {
"status": "trusted"
},
"cohort": {
"distinct_listings": 70,
"median": 399.99,
"policy_version": "cohort-v1"
},
"component_id": "242957af-a870-4f47-912b-d04c1dd6f464",
"name": "NVIDIA GeForce RTX 3080",
"query_price_usd": "0.01",
"status": "ok"
},
"type": "json"
}
},
"routeTemplate": "/api/x402/pricing/component/:id",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"benchmark_trust": {
"type": "object"
},
"cohort": {
"type": "object"
},
"component_id": {
"format": "uuid",
"type": "string"
},
"name": {
"type": "string"
},
"query_price_usd": {
"type": "string"
},
"status": {
"type": "string"
},
"strata": {
"type": "array"
}
},
"required": [
"status",
"component_id",
"benchmark_trust",
"query_price_usd"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://hardwarehunter.io/api/x402/pricing/component/:id" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://hardwarehunter.io/api/x402/pricing/component/:id");
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://hardwarehunter.io/api/x402/pricing/component/:id")
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/9112.json, and this resource appears in /discovery/resources and /discovery/search.