Skip to main content
POST
/
user
/
v1
/
crypto
/
decrypt
Decrypt encrypted values
curl --request POST \
  --url https://api.machines.cash/user/v1/crypto/decrypt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "id": "card_name",
      "encrypted": {
        "v": 1,
        "iv": "...",
        "ct": "..."
      }
    }
  ]
}
'
{
  "ok": true,
  "data": {},
  "summary": "success"
}

Documentation Index

Fetch the complete documentation index at: https://docs.machines.cash/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer session token for User API operations. Legacy UserSessionBearer naming remains supported.

Body

application/json
items
object[]
required
Required array length: 1 - 50 elements

Response

Success

items
object[]