Problem
Problem: Accept or reject this bounded signal capture against the caller-supplied metric rules and return every measurement and violation. Input: JSON with sample rate hz, channels, rules. Result: measurements, violations and checksummed artifacts. Limits: Bounded signal processing only; 8 channels; 1024 samples/channel.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
627 msmedian answer time
$0.005listed price per call
$0.005price it asked us
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://jobs.rqmtechnologies.com/x402/buyer-jobs/gate-signal-capture-v1
| Category | Everything else |
|---|---|
| Provider host | jobs.rqmtechnologies.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 627 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example-gate-signal-capture-v1",
"max_total_price": "0.005000",
"request": {
"channels": [
{
"channel_id": "signal",
"role": "signal",
"samples": [
0,
1,
0,
-1,
0,
1,
0,
-1,
0,
1,
0,
-1,
0,
1,
0,
-1
]
}
],
"rules": [
{
"channel_id": "signal",
"maximum": 1,
"metric": "rms",
"rule_id": "rms-limit"
}
],
"sample_rate_hz": 1024,
"signal_kind": "scalar"
},
"schema_version": "rqm.jobs.bazaar-buyer-job-request.v1"
},
"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": {
"additionalProperties": false,
"properties": {
"idempotency_key": {
"maxLength": 128,
"minLength": 1,
"pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
"type": "string"
},
"max_total_price": {
"pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$",
"type": "string"
},
"request": {
"additionalProperties": false,
"properties": {
"channels": {
"items": {
"additionalProperties": false,
"properties": {
"channel_id": {
"maxLength": 64,
"minLength": 1,
"pattern": "^[A-Za-z0-9._-]+$",
"title": "Channel Id",
"type": "string"
},
"role": {
"default": "signal",
"enum": [
"signal",
"i",
"q"
],
"title": "Role",
"type": "string"
},
"samples": {
"items": {
"type": "number"
},
"maxItems": 1024,
"minItems": 16,
"title": "Samples",
"type": "array"
}
},
"required": [
"channel_id",
"samples"
],
"title": "SignalChannelRequest",
"type": "object"
},
"maxItems": 8,
"minItems": 1,
"title": "Channels",
"type": "array"
},
"rules": {
"items": {
"additionalProperties": false,
"properties": {
"channel_id": {
"maxLength": 64,
"minLength": 1,
"title": "Channel Id",
"type": "string"
},
"maximum": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Maximum"
},
"metric": {
"enum": [
"sample_count",
"sample_rate_hz",
"duration_seconds",
"minimum",
"maximum",
"mean",
"rms",
"standard_deviation",
"peak_to_peak",
"frequency_resolution_hz",
"nyquist_frequency_hz",
"dominant_frequency_hz",
"dominant_amplitude"
],
"title": "Metric",
"type": "string"
},
"minimum": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Minimum"
},
"rule_id": {
"maxLength": 64,
"minLength": 1,
"pattern": "^[A-Za-z0-9._-]+$",
"title": "Rule Id",
"type": "string"
}
},
"required": [
"rule_id",
"channel_id",
"metric"
],
"title": "SignalGateMetricRule",
"type": "object"
},
"maxItems": 32,
"minItems": 1,
"title": "Rules",
"type": "array"
},
"sample_rate_hz": {
"exclusiveMinimum": 0,
"maximum": 1000000000,
"title": "Sample Rate Hz",
"type": "number"
},
"signal_kind": {
"default": "multichannel",
"enum": [
"scalar",
"multichannel",
"iq"
],
"title": "Signal Kind",
"type": "string"
}
},
"required": [
"sample_rate_hz",
"channels",
"rules"
],
"title": "GateSignalCaptureRequest",
"type": "object"
},
"schema_version": {
"const": "rqm.jobs.bazaar-buyer-job-request.v1"
}
},
"required": [
"schema_version",
"idempotency_key",
"max_total_price",
"request"
],
"type": "object"
},
"bodyType": {