dead-drop

Ephemeral zero-knowledge encrypted drops over a keyless API

🔐 SecurityHEALTHYchecked 2h 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.

89HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 89 · healthy
Uptime history
99.02%90 days
98.3%30 days
722P50 · ms
1299P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 235 ms, slowest 1092 ms, most recent 730 ms.
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 · 6HealthyFULL DOCS ↗
Monitored path responding — GET /drops/generate-name722 mschecked 2h ago
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 healthy with 99.02% uptime over 90 days and a 722 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.