# RQM Convert Capture To Spectrum

> RQM Convert Capture To Spectrum is a paid API for AI agents from jobs.rqmtechnologies.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Converts a bounded complex IQ signal capture into a checksummed spectral artifact (FFT) with a declared normalization convention

## Facts

- Endpoint: POST https://jobs.rqmtechnologies.com/x402/buyer-jobs/wave.convert-capture-to-spectrum.v1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rqm-convert-capture-to-spectrum-f68b184d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5dqXk--t7fTNWmJH2j4K8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rqm-convert-capture-to-spectrum-f68b184d -d '<json body>'
```

Example prompt: Take my 1024 complex IQ samples captured at 10 MHz on channel 'rf-ch0' and convert them to a spectrum artifact using ortho normalization — I need the checksummed spectral result I can feed into the next processing step.

## When to prefer this

Choose this endpoint when you need a deterministic, checksummed frequency-domain artifact from a bounded complex IQ capture with a specific normalization convention (backward, ortho, or forward). It is ideal when the spectral result needs to gate or feed a downstream workflow step and integrity (via checksum) matters. Do not use it when you need hardware-level truth, causal RF diagnosis, unbounded streaming spectral data, or physical claims beyond what a bounded FFT can assert.

## Known failure modes

- Sample count out of range (must be 1–4096 samples)
- Sample rate out of range (must be > 0 and ≤ 1,000,000,000 Hz)
- Invalid channel_id format (must match ^[A-Za-z0-9._-]{1,64}$)
- Unsupported normalization value (must be backward, ortho, or forward)
- Payment insufficient or missing (x402 protocol)
- Idempotency key format violation
- Schema version mismatch

## How this service works

Convert Capture To Spectrum: Convert this bounded complex capture into a checksummed spectral artifact with declared... Use when: The caller needs a bounded objective result that can directly gate or feed its next step. Returns: strict JSON summary, checksummed artifact manifest. Boundaries: Deterministic bounded local signal processing only; no causal, hardware, physical, regulatory, safety, or...

## Output

A checksummed spectral artifact containing the frequency-domain representation of the input complex capture, with the declared normalization convention (backward, ortho, or forward) and a checksum for integrity verification — suitable for gating downstream steps or feeding into further spectral processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "request": {
   "type": "object",
   "description": "Convert Capture To Spectrum request metadata is discovery-only while execution is disabled.",
   "additionalProperties": true
  },
  "schema_version": {
   "const": "rqm.jobs.bazaar-buyer-job-request.v1"
  },
  "idempotency_key": {
   "type": "string",
   "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
   "maxLength": 128,
   "minLength": 1
  },
  "max_total_price": {
   "type": "string",
   "pattern": "^(?:0|[1-9]\\d{0,13})(?:\\.\\d{1,6})?$"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rqm-convert-capture-to-spectrum-f68b184d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jobs.rqmtechnologies.com](https://www.zero.xyz/host/jobs.rqmtechnologies.com/llms.txt)
