dead-drop

Ephemeral zero-knowledge encrypted drops over a keyless API

🔐 SecurityUNMONITOREDchecked 1h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

dead-drop hands out self-destructing, client-encrypted data drops that the server never sees in plaintext. Keyless GET routes mint random drop names and report health, while creating or reading a drop runs through its documented terms-gated flow. Handy for one-time secret handoffs between machines or people.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://api.dead-drop.xyz/api/v1/drops/generate-name

{
  "name": "chip-uphill-petticoat-skyrocket",
  "id": "cbea5022726ae2a970dca5b7523bec9d4e194368059fcf3df34e09e14f263467"
}
Call itcurl · fetch · python
curl "https://api.dead-drop.xyz/api/v1/drops/generate-name"
const res = await fetch("https://api.dead-drop.xyz/api/v1/drops/generate-name");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://api.dead-drop.xyz/api/v1/drops/generate-name")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /drops/generate-name has been probed
GET/drops/generate-namePROBED

Ephemeral zero-knowledge encrypted drops over a keyless API

GET/drops

Drops — documented GET route.

GET/drops/1

Drops details by ID (example: 1).

GET/drops?limit=10

Drops — documented GET route.

GET/drops/search?q=test

Search by query parameters.

GET/health

Health check

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

dead-drop: common questions

Is dead-drop free to use?

Yes — dead-drop is a free security API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does dead-drop need an API key?

No — dead-drop needs no API key or signup. You can call it straight away; rate limits still apply (100 req/window · 100 remaining · resets 1783513841).

Can I call dead-drop from the browser?

Yes — dead-drop returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is dead-drop up right now?

As of our last scheduled check, dead-drop is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.