Nukez

§ docs · http

REST API

any language

HTTP Endpoints

The any-language surface.

Pick HTTP when you need to integrate from a runtime where no SDK exists, when you want maximum control over envelope construction, or when your agent is operating under tight process isolation.

The shape of a request

POST /v1/storage/put
Authorization: Nukez-Envelope "ed25519" OR "secp256k1"
Content-Type: application/octet-stream

<raw bytes>

# Response:
HTTP/1.1 201 Created
{
  "receipt_id": "A7F1",
  "sha256": "0x3a19...f04c",
  "merkle_root": "0x4f2a...8c15",
  "anchor_slot": 345209114
}

Envelope construction

Every mutating request carries a signed envelope. Ed25519 and secp256k1 are accepted as equal first-class algorithms; the gateway chooses the verification path from the Algorithm header. Signature schemes cannot be mixed within a single request, but any locker may accept either from one envelope to the next.

§ next