# Drone — Randomly

> Detuned partials, beating slowly against each other. One of 63 generators at [Randomly](https://randomly.cluxnei.dev), a library of random generators seeded from verifiable real-world entropy. Free HTTP API, no key, no signup.

## `audio.drone` — Drone

Detuned partials, beating slowly against each other.

| | |
|---|---|
| **Key** | `audio.drone` |
| **Module** | `audio` |
| **Version** | `1` — a permalink carries this, and a replay against a different version returns `409` rather than something else |
| **Formats** | `application/json`, `text/plain`, `audio/wav` |
| **Studio** | https://randomly.cluxnei.dev/g/audio/drone |
| **API** | `GET https://randomly.cluxnei.dev/api/v1/g/audio.drone` |

`value` is a **score** — events, envelopes and synthesis parameters — not samples. Ask for `format=wav` to get the audio.

| Parameter | Type | Default | Accepts | What it does |
|---|---|---|---|---|
| `root` | enum | `A` | `C`, `C#`, `D`, `D#`, `E`, `F`, `F#`, `G`, `G#`, `A`, `A#`, `B` | Root |
| `octave` | int | `2` | `1` – `4` | Octave — Low is the point. A drone an octave up stops being a floor and starts being a note. |
| `partials` | int | `5` | `2` – `10` | Partials — Harmonics above the root: f, 2f, 3f and so on. Each one is a pair of sines, slightly apart. |
| `beating` | float | `0.4` | `0.05` – `8` | Beat rate (Hz) — How often each pair swells, in beats per second. Under 1 Hz it breathes; past 4 it turns into a rattle. |
| `movement` | float | `0.4` | `0` – `1` | Movement — How far the partials drift in level and the filter in cutoff over the piece. At zero it is completely static, which is its own kind of useful. |
| `tilt` | float | `0.45` | `0` – `1` | Brightness — How much of the upper harmonics survives. Dark is a cello section; bright is an organ with every stop out. |
| `spread` | float | `0.8` | `0` – `1` | Stereo spread — The two halves of each beating pair are placed on opposite sides, so the swell moves across the image instead of sitting in the middle. |
| `duration` | float | `30` | `8` – `90` | Length (seconds) |
| `volume` | float | `-12` | `-36` – `0` | Volume (dBFS) — Where the mix sits before the master limiter. 0 dBFS is full scale; everything starts 12 dB below it. |

Out-of-range numbers are **clamped, not rejected**, so a request never fails for being
ambitious — but it may not do what you meant. Unknown keys are dropped and missing ones
fall back to the defaults above.

```bash
curl -s 'https://randomly.cluxnei.dev/api/v1/g/audio.drone?root=A&octave=2&partials=5' -H 'Accept: text/plain'
curl -o out.wav 'https://randomly.cluxnei.dev/api/v1/g/audio.drone?root=A&octave=2&partials=5&format=wav'
```

## The receipt

Every result carries one, naming the physical source of the randomness and linking to the
third party's own record of it:

```json
"receipt": {
  "source": "seismic",
  "source_label": "USGS Seismic Feed",
  "class": "C",
  "caveat": "Carries only tens of bits of genuine surprise. Always mixed with the OS CSPRNG.",
  "narrative": "A magnitude 3.6 earthquake, 67 km N of Culebra, Puerto Rico, 39.6 km down — 52 minutes ago.",
  "proof_url": "https://earthquake.usgs.gov/earthquakes/eventpage/us7000th33",
  "mixed_with_csprng": true,
  "degraded": false
}
```

Pick the source with `?source=`, or leave it at the default `auto`:

- **Class A** (Cryptographic) — `csprng`, `anu-qrng`, `random-org`
- **Class B** (Public beacon) — `nist-beacon`, `drand`, `bitcoin`. Published openly — anyone can look this value up after the fact.
- **Class C** (Observational) — `seismic`, `space-weather`, `atmosphere`, `iss`. Carries only tens of bits of genuine surprise. Always mixed with the OS CSPRNG.

## More

- [The full API contract](https://randomly.cluxnei.dev/api.md)
- [Everything in one file](https://randomly.cluxnei.dev/llms-full.txt)
- [The catalogue as JSON](https://randomly.cluxnei.dev/api/v1/generators)
- [This generator in the browser](https://randomly.cluxnei.dev/g/audio/drone)
