Cipher 0.2 is here — see the new code blocks.
Sign up

Decrypt

Recover the original payload from an envelope.

~ 1 min read

http
POST /v1/decrypt

Request

envelope string body required

The envelope returned by /encrypt.

Response

payload string

The original data, decoded.

Request example
bash
curl https://api.example.com/v1/decrypt \
  -H "Authorization: Bearer $CIPHER_KEY" \
  -d '{"envelope": "v2:Ks7...=="}'
Response example
json
{ "payload": "secret note" }
Last updated Edit this page
↑↓ navigate open esc close