Returns measured evidence about a recording, not a verdict on it
Returns measured evidence about a recording, not a verdict on it. The spectral cut-off says which lossy stages the file has already been through, since every encoder discards everything above its own ceiling. The room tone measurement compares the noise floor across the silent stretches: a microphone in a room produces a floor that differs between pauses, and a level identical to the hundredth of a decibel across every pause means the silence was inserted rather than recorded.
6000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-13
updated
Provider
audio.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "6000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"audio": {
"url": "https://audio.halowerk.com/examples/voice.wav"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"audio": {
"additionalProperties": false,
"description": "The recording. Either url or content_base64, not both.",
"properties": {
"content_base64": {
"description": "The file inline, base64. A data: prefix is accepted.",
"maxLength": 12000000,
"type": "string"
},
"url": {
"description": "Public http(s) URL of the audio file. Private and local addresses are refused.",
"maxLength": 2048,
"type": "string"
}
},
"type": "object"
},
"silence_threshold_db": {
"default": -35,
"description": "Level below which a stretch counts as a pause, for the room tone measurement.",
"maximum": -20,
"minimum": -70,
"type": "integer"
}
},
"required": [
"audio"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://audio.halowerk.com/voice-evidence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://audio.halowerk.com/voice-evidence");
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://audio.halowerk.com/voice-evidence")
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/15349.json, and this resource appears in /discovery/resources and /discovery/search.