Delete (hide) a vault item
API reference

Delete (hide) a vault item

Soft-deletes a vault item you own: nothing is removed from storage, the item is hidden and disappears from every list.

View as MarkdownUpdated Aug 19, 2026
DELETE/api/external/vault/{id}

Soft-deletes a vault item you own: nothing is removed from storage, the item is hidden and disappears from every list.

Idempotent — deleting an already-hidden item is a success, so blind retries are harmless.

Authentication

Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.

Path parameters

NameTypeRequiredDescription
idstringRequiredThe vault item id.

Responses

200Hidden (or already hidden).
NameTypeDescription
successbooleanAlways true.
Example response
{
  "success": true
}

Errors

StatusBodyWhen
401{"error":"Unauthorized","code":"unauthorized"}Missing or invalid API key.
404{"error":"Vault item not found"}No item with that id on this creator’s account (other creators’ ids also 404 — never 403).
500{"error":"Failed to delete vault item"}Write failed — retry later.

Rate limiting

Every response carries the X-RateLimit-Tier header and, on limited tiers, the per-minute and per-day trios — read X-RateLimit-Remaining and X-RateLimit-Reset instead of hardcoding limits. Details in Rate limits.

Code samples

curl -X DELETE "https://www.dropfans.io/api/external/vault/$VAULT_ITEM_ID" \
  -H "Authorization: Bearer $DROPFANS_API_KEY"

Questions? [email protected]